We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9755d60 commit 1513a39Copy full SHA for 1513a39
1 file changed
player/Yoshi.h
@@ -1,13 +1,24 @@
1
#pragma once
2
3
#include <player/PlayerBase.h>
4
+#include <player/PlayerObject.h>
5
-class Yoshi : public PlayerBase
6
+class Yoshi : public PlayerBase // vtbl Address: 0x10171B28
7
{
8
+ // getRuntimeTypeInfoStatic()::typeInfo initialization guard variable Address: 0x101E9ECC
9
+ // getRuntimeTypeInfoStatic()::typeInfo Address: 0x101E9ED0
10
SEAD_RTTI_OVERRIDE(Yoshi, PlayerBase)
11
12
public:
13
// ...
14
bool setDamage(Actor* actor, DamageType type) override;
15
16
+
17
+ /**
18
+ * @brief Returns the player which is riding the Yoshi, or @c nullptr if there is none.
19
+ * @par Address 0x0296B3C4
20
+ */
21
+ PlayerObject* getPlayerRideOn() const;
22
23
+ // ...
24
};
0 commit comments