mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
15 lines
302 B
C++
15 lines
302 B
C++
#pragma once
|
|
|
|
#include "Game/LiveActor/LiveActor.hpp"
|
|
|
|
class TimerSwitch : public LiveActor {
|
|
public:
|
|
TimerSwitch(const char *);
|
|
|
|
virtual ~TimerSwitch();
|
|
virtual void init(const JMapInfoIter &);
|
|
virtual void control();
|
|
|
|
s32 mTimerLength; // 0x8C
|
|
s32 mCurrentTime; // 0x90
|
|
}; |