scene edit

This commit is contained in:
Nikolay Korolev
2020-04-13 21:50:56 +03:00
parent e71b000cc5
commit cb85091d34
5 changed files with 806 additions and 25 deletions

View File

@@ -62,12 +62,17 @@ public:
static int16 m_nCurrentMovieCommand;
static int16 m_nCurrentCommand;
static int16 m_nCurrentVehicle;
static int16 m_nCurrentActor;
static bool m_bEditOn;
static bool m_bRecording;
static bool m_bCommandActive;
static bool m_bActorSelected;
static bool m_bActor2Selected;
static bool m_bVehicleSelected;
static int16 m_nNumActors;
static int16 m_nNumVehicles;
static int16 m_nNumMovieCommands;
static int16 m_nWeaponType;
static CPed* pActors[NUM_ACTORS_IN_MOVIE];
static CVehicle* pVehicles[NUM_VEHICLES_IN_MOVIE];
static bool m_bDrawGotoArrow;
@@ -86,5 +91,5 @@ public:
static void SelectActor(void);
static void SelectActor2(void);
static void SelectVehicle(void);
static void SelectWeapon(void);
static bool SelectWeapon(void);
};