mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-14 07:04:08 +00:00
some lcs stuff
This commit is contained in:
parent
bec8f6b86c
commit
69d30f2204
5 changed files with 157 additions and 28 deletions
|
@ -267,7 +267,8 @@ enum {
|
|||
MAX_NUM_MISSION_SCRIPTS = 120,
|
||||
MAX_NUM_BUILDING_SWAPS = 25,
|
||||
MAX_NUM_INVISIBILITY_SETTINGS = 20,
|
||||
MAX_NUM_STORED_LINES = 1024
|
||||
MAX_NUM_STORED_LINES = 1024,
|
||||
MAX_ALLOWED_COLLISIONS = 2
|
||||
};
|
||||
|
||||
class CTheScripts
|
||||
|
@ -317,6 +318,8 @@ class CTheScripts
|
|||
#define CARDS_IN_STACK (CARDS_IN_DECK * MAX_DECKS)
|
||||
static int16 CardStack[CARDS_IN_STACK];
|
||||
static int16 CardStackPosition;
|
||||
|
||||
static int AllowedCollision[MAX_ALLOWED_COLLISIONS];
|
||||
#endif
|
||||
public:
|
||||
static bool bPlayerIsInTheStatium;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue