diff options
| author | Léo Lam <leo@leolam.fr> | 2021-01-08 19:33:10 +0100 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2021-01-09 13:40:43 +0100 |
| commit | 3ce19016ec6e496dbb005a620d270d7c813764fd (patch) | |
| tree | 895dff441dd1e242183104af430c5a0bddd4cb64 /src/KingSystem/ActorSystem/Profiles | |
| parent | 23b3047f49c9b4248b34e63b4d2cf903db8b5b95 (diff) | |
uking/ui: Add more inventory functions
Diffstat (limited to 'src/KingSystem/ActorSystem/Profiles')
| -rw-r--r-- | src/KingSystem/ActorSystem/Profiles/actPlayerBase.cpp | 1 | ||||
| -rw-r--r-- | src/KingSystem/ActorSystem/Profiles/actPlayerBase.h | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/KingSystem/ActorSystem/Profiles/actPlayerBase.cpp b/src/KingSystem/ActorSystem/Profiles/actPlayerBase.cpp new file mode 100644 index 00000000..abc059cd --- /dev/null +++ b/src/KingSystem/ActorSystem/Profiles/actPlayerBase.cpp @@ -0,0 +1 @@ +#include "KingSystem/ActorSystem/Profiles/actPlayerBase.h" diff --git a/src/KingSystem/ActorSystem/Profiles/actPlayerBase.h b/src/KingSystem/ActorSystem/Profiles/actPlayerBase.h new file mode 100644 index 00000000..47c9cace --- /dev/null +++ b/src/KingSystem/ActorSystem/Profiles/actPlayerBase.h @@ -0,0 +1,15 @@ +#pragma once + +#include <prim/seadSafeString.h> + +namespace ksys::act { + +// TODO +class PlayerBase { +public: + // FIXME: name for x and name+type for y + void switchEquipment(const sead::SafeString& slot, int frames, int x = -1, + const uintptr_t& y = {}); +}; + +} // namespace ksys::act |
