echoes/include/MetroidPrime/CEchoParameters.hpp
Henrique Gemignani Passos Lima 1b17c90a47
Decently implement LoadPickup
2023-08-10 15:25:59 +03:00

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