mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-16 03:05:52 +00:00
18 lines
244 B
C++
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
|