chenlh
2026-03-10 0f65a1a9267b8a7ab4678ef20b07532e4c8377ca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 
#pragma once
 
#include <vector>
#include <stdint.h>
 
namespace ReverbHallRoom
{
    class RandomBuffer
    {
    public:
        static std::vector<float> Generate(uint64_t seed, int count);
        static std::vector<float> Generate(uint64_t seed, int count, float crossSeed);
    };
}