mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 00:18:59 +00:00
13 lines
152 B
C++
13 lines
152 B
C++
#pragma once
|
|
|
|
class CReplay
|
|
{
|
|
public:
|
|
static void Display(void);
|
|
enum {
|
|
MODE_1 = 1
|
|
};
|
|
|
|
static uint8 &Mode;
|
|
static Bool &bPlayingBackFromFile;
|
|
};
|