chenlh
2026-03-26 36e42207da4c088b5bfd96f2cfc8944f890440d7
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);
    };
}