mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-12-30 08:22:37 +00:00
most of gameplay tab works
This commit is contained in:
@@ -8,6 +8,7 @@ namespace tinyxml2 {
|
||||
}
|
||||
|
||||
class AMFArrayValue;
|
||||
class ModelComponent;
|
||||
|
||||
class State {
|
||||
public:
|
||||
@@ -19,6 +20,11 @@ public:
|
||||
|
||||
void Serialize(tinyxml2::XMLElement& state) const;
|
||||
void Deserialize(const tinyxml2::XMLElement& state);
|
||||
|
||||
const std::vector<Strip>& GetStrips() const { return m_Strips; }
|
||||
std::vector<Strip>& GetStripsMut() { return m_Strips; }
|
||||
|
||||
void Update(float deltaTime, ModelComponent& modelComponent);
|
||||
private:
|
||||
std::vector<Strip> m_Strips;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user