mirror of
https://github.com/halpz/re3.git
synced 2025-01-25 07:00:59 +00:00
15 lines
153 B
C++
15 lines
153 B
C++
#pragma once
|
|
|
|
class CReplay
|
|
{
|
|
public:
|
|
enum {
|
|
MODE_1 = 1
|
|
};
|
|
|
|
static uint8 &Mode;
|
|
static bool &bPlayingBackFromFile;
|
|
|
|
static void Display(void);
|
|
};
|