Add CScriptPickup and all dependencies

Former-commit-id: 78aebc8960
This commit is contained in:
Henrique Gemignani Passos Lima
2022-10-05 21:05:56 +03:00
parent c6383170f6
commit e2e4fe7f6c
16 changed files with 343 additions and 2 deletions

View File

@@ -33,6 +33,10 @@ public:
, x1_matSetIdx(0)
, x2_flags(kF_DepthCompare | kF_DepthUpdate)
, x4_color(color) {}
CModelFlags(ETrans blendMode, u8 shadIdx, EFlags flags, const CColor& col)
: x0_blendMode(blendMode), x1_matSetIdx(shadIdx), x2_flags(flags), x4_color(col) {}
CModelFlags(const CModelFlags& flags, uint otherFlags)
: x0_blendMode(flags.x0_blendMode)
, x1_matSetIdx(flags.x1_matSetIdx)