chenlh
2026-03-20 f761b6198e2e98f02adb84c83dbf59529e51b2ef
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);
    };
}