mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
22 lines
446 B
C++
22 lines
446 B
C++
#ifndef GLUE_CHARACTER_SELECTION_DISPLAY_HPP
|
|
#define GLUE_CHARACTER_SELECTION_DISPLAY_HPP
|
|
|
|
#include "net/Types.hpp"
|
|
|
|
class CCharacterComponent;
|
|
class CM2Model;
|
|
|
|
class CharacterSelectionDisplay {
|
|
public:
|
|
// Member variables
|
|
CHARACTER_INFO m_info;
|
|
CCharacterComponent* m_component = nullptr;
|
|
CM2Model* m_petModel = nullptr;
|
|
// TODO
|
|
|
|
// Member functions
|
|
void CreateModelData();
|
|
};
|
|
|
|
#endif
|