mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
17 lines
312 B
C++
17 lines
312 B
C++
|
|
#ifndef GLUE_C_CHARACTER_SELECTION_HPP
|
||
|
|
#define GLUE_C_CHARACTER_SELECTION_HPP
|
||
|
|
|
||
|
|
#include <storm/Array.hpp>
|
||
|
|
|
||
|
|
struct CharacterSelectionDisplay {
|
||
|
|
// TODO
|
||
|
|
};
|
||
|
|
|
||
|
|
class CCharacterSelection {
|
||
|
|
public:
|
||
|
|
// Static variables
|
||
|
|
static TSGrowableArray<CharacterSelectionDisplay> s_characterList;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|