feat(glue): display list of characters

This commit is contained in:
VDm 2025-03-16 15:50:27 +04:00
parent 64dc5f3aae
commit c848085747
10 changed files with 174 additions and 8 deletions

View file

@ -2,11 +2,12 @@
#define GLUE_C_CHARACTER_SELECTION_HPP
#include <storm/Array.hpp>
#include "net/Types.hpp"
class CSimpleModelFFX;
struct CharacterSelectionDisplay {
// TODO
CHARACTER_INFO m_characterInfo;
};
class CCharacterSelection {
@ -20,6 +21,9 @@ class CCharacterSelection {
static void RenderPrep();
static void SetBackgroundModel(const char* modelPath);
static void SetCharFacing(float facing);
static void ClearCharacterList();
static void UpdateCharacterList();
static uint32_t GetNumCharacters();
};
#endif