mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-31 00:06:05 +03: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
|