mirror of https://github.com/PrimeDecomp/prime.git
17 lines
243 B
C++
17 lines
243 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
|