Files
tww/include/d/d_s_play.h
T
Luke Street adb95b135c Import project
Original repository: https://github.com/encounter/ww
2023-09-10 00:48:55 -04:00

20 lines
384 B
C++

#ifndef D_S_PLAY
#define D_S_PLAY
#include "f_op/f_op_scene.h"
class dScnPly_ply_c : public scene_class {
public:
s8 calcPauseTimer();
bool resetGame();
void offReset();
static bool isPause() { return pauseTimer == 0; }
static void setPauseTimer(s8 time) { pauseTimer = time; }
static s8 pauseTimer;
static s8 nextPauseTimer;
};
#endif /* D_S_PLAY */