Progress in CPlayerGun constructor

Former-commit-id: a40d835759
This commit is contained in:
Henrique Gemignani Passos Lima
2022-10-06 12:30:10 +03:00
parent ee2717d166
commit 3caccf5974
3 changed files with 170 additions and 8 deletions

View File

@@ -5,6 +5,12 @@
class CElementGen {
public:
enum EModelOrientationType { kMOT_Normal, kMOT_One };
enum EOptionalSystemFlags { kOSF_None, kOSF_One, kOSF_Two };
enum LightType { kLT_None = 0, kLT_Custom = 1, kLT_Directional = 2, kLT_Spot = 3 };
CElementGen(TToken<CGenDescription>, EModelOrientationType = kMOT_Normal, EOptionalSystemFlags = kOSF_One);
static void Initialize();
static void ShutDown();
};