More defs for CStateManagerContainer & friends

This commit is contained in:
2022-08-12 22:48:34 -04:00
parent c21e495b7e
commit 04a7213fa7
19 changed files with 390 additions and 7 deletions

View File

@@ -0,0 +1,17 @@
#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