mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2024-11-26 23:00:24 +00:00
16 lines
225 B
C++
16 lines
225 B
C++
#ifndef _CECHOPARAMETERS
|
|
#define _CECHOPARAMETERS
|
|
|
|
class CEchoParameters {
|
|
public:
|
|
CEchoParameters(int, int, int, float, float, float);
|
|
|
|
private:
|
|
int x0;
|
|
float x4;
|
|
float x8;
|
|
float xc;
|
|
};
|
|
|
|
#endif // _CECHOPARAMETERS
|