mirror of https://github.com/PrimeDecomp/prime.git
17 lines
263 B
C++
17 lines
263 B
C++
|
#ifndef _CGUITABLEGROUP
|
||
|
#define _CGUITABLEGROUP
|
||
|
|
||
|
#include "GuiSys/CGuiObject.hpp"
|
||
|
|
||
|
class CGuiTableGroup {
|
||
|
public:
|
||
|
class CRepeatState {
|
||
|
CRepeatState();
|
||
|
uchar Update(float dt, bool state);
|
||
|
private:
|
||
|
float x0_timer;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
#endif // _CGUITABLEGROUP
|