We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b045c44 commit 4d13d53Copy full SHA for 4d13d53
1 file changed
actor/Actor.h
@@ -196,7 +196,12 @@ class Actor : public ActorBase // vtbl Address: 0x10000268
196
{
197
mDirection = dir;
198
}
199
-
+
200
+ u8 getLayer() const
201
+ {
202
+ return mLayer;
203
+ }
204
205
f32 getSpeedF() const
206
207
return mSpeedF;
@@ -352,6 +357,16 @@ class Actor : public ActorBase // vtbl Address: 0x10000268
352
357
return CarryFlag(mCarryFlag);
353
358
354
359
360
+ u8 getSwitchFlag0() const
361
362
+ return mSwitchFlag0;
363
364
365
+ u8 getSwitchFlag1() const
366
367
+ return mSwitchFlag1;
368
369
355
370
u32 getProfFlag() const
356
371
372
return mProfFlag;
0 commit comments