blob: 08716136caa49bbf4ec580b7a8456a704bd3c82e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//===========================================================================
// Copyright (C) 2000 Radical Entertainment Ltd. All rights reserved.
//
//===========================================================================
#ifndef CHEATINPUTS_H
#define CHEATINPUTS_H
//===========================================================================
// Constants and Enums
//===========================================================================
const unsigned int NUM_CHEAT_SEQUENCE_INPUTS = 4;
enum eCheatInput
{
UNKNOWN_CHEAT_INPUT = -1,
CHEAT_INPUT_0,
CHEAT_INPUT_1,
CHEAT_INPUT_2,
CHEAT_INPUT_3,
NUM_CHEAT_INPUTS
};
#endif // CHEATINPUTS_H
|