mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
23 lines
474 B
C++
23 lines
474 B
C++
#ifndef GLUE_C_CHARACTER_SELECTION_HPP
|
|
#define GLUE_C_CHARACTER_SELECTION_HPP
|
|
|
|
#include <storm/Array.hpp>
|
|
|
|
class CSimpleModelFFX;
|
|
|
|
struct CharacterSelectionDisplay {
|
|
// TODO
|
|
};
|
|
|
|
class CCharacterSelection {
|
|
public:
|
|
// Static variables
|
|
static TSGrowableArray<CharacterSelectionDisplay> s_characterList;
|
|
static CSimpleModelFFX* s_modelFrame;
|
|
|
|
// Static functions
|
|
static void SetBackgroundModel(const char* modelPath);
|
|
};
|
|
|
|
#endif
|