mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-15 16:31:20 +00:00
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
|