1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-28 19:38:41 +00:00
re3/src/control/Record.h

20 lines
206 B
C
Raw Normal View History

2019-05-29 18:02:58 +00:00
#pragma once
2019-06-28 10:34:02 +00:00
enum {
RECORDSTATE_0,
RECORDSTATE_1,
RECORDSTATE_2,
};
2019-05-29 18:02:58 +00:00
class CRecordDataForGame
{
public:
2019-06-16 22:16:38 +00:00
static uint16 &RecordingState;
2019-05-29 22:47:33 +00:00
};
class CRecordDataForChase
{
public:
2019-06-16 22:16:38 +00:00
static uint8 &Status;
2019-05-29 22:47:33 +00:00
};