feat(glue): wire up character select background

This commit is contained in:
fallenoak 2023-02-19 21:39:21 -06:00
parent f384fce742
commit 5e3d08bf32
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
4 changed files with 57 additions and 2 deletions

View file

@ -3,6 +3,8 @@
#include <storm/Array.hpp>
class CSimpleModelFFX;
struct CharacterSelectionDisplay {
// TODO
};
@ -11,6 +13,10 @@ class CCharacterSelection {
public:
// Static variables
static TSGrowableArray<CharacterSelectionDisplay> s_characterList;
static CSimpleModelFFX* s_modelFrame;
// Static functions
static void SetBackgroundModel(const char* modelPath);
};
#endif