diff options
author | Treeki <treeki@gmail.com> | 2013-02-03 22:34:39 +0100 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2013-02-03 22:34:39 +0100 |
commit | 9219c7c840faab57f284802c1bdc1eb1df0579d3 (patch) | |
tree | ab357d7b6ae91b72a702b7a88974907cc39d5cd3 /include | |
parent | 9254704323d25fcc0cc8881895705e0baa5eeef2 (diff) | |
download | kamek-9219c7c840faab57f284802c1bdc1eb1df0579d3.tar.gz kamek-9219c7c840faab57f284802c1bdc1eb1df0579d3.zip |
an attempt to fix the shyguy star bullshit
Diffstat (limited to '')
-rwxr-xr-x | include/game.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/game.h b/include/game.h index 300efec..ce7a672 100755 --- a/include/game.h +++ b/include/game.h @@ -3662,5 +3662,12 @@ extern void *SelectCursorPointer; extern "C" void UpdateSelectCursor(nw4r::lyt::Pane *pane, int whichOne, bool unkBool);
extern "C" void HideSelectCursor(void *scPtr, int whichOne);
+typedef int (*__Player_VF3D4_type)(void*);
+inline int Player_VF3D4(void *self) {
+ VF_BEGIN(__Player_VF3D4_type, self, 245, 0x60)
+ return VF_CALL(self);
+ VF_END;
+}
+
#endif
|