prime/include/MetroidPrime/CRippleManager.hpp

18 lines
244 B
C++

#ifndef _CRIPPLEMANAGER_HPP
#define _CRIPPLEMANAGER_HPP
#include "types.h"
#include "rstl/vector.hpp"
class CRipple;
class CRippleManager {
private:
f32 x0_maxTimeFalloff;
rstl::vector< CRipple > x4_ripples;
f32 x14_alpha;
};
#endif