#pragma once #include #include namespace RNR { class Player : public Instance { ModelInstance* m_character; int m_userId; public: Player(); ModelInstance* getCharacter() { return m_character; } void setCharacter(ModelInstance* model) { m_character = model; } virtual std::string getClassName() { return "Player"; } virtual void addProperties(std::vector& properties); }; }