mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
b261e63233
* chore: Change entity and component logic to use bitstream references * merge
35 lines
478 B
C++
35 lines
478 B
C++
#include "Component.h"
|
|
|
|
|
|
Component::Component(Entity* parent) {
|
|
m_Parent = parent;
|
|
}
|
|
|
|
Component::~Component() {
|
|
|
|
}
|
|
|
|
Entity* Component::GetParent() const {
|
|
return m_Parent;
|
|
}
|
|
|
|
void Component::Update(float deltaTime) {
|
|
|
|
}
|
|
|
|
void Component::OnUse(Entity* originator) {
|
|
|
|
}
|
|
|
|
void Component::UpdateXml(tinyxml2::XMLDocument* doc) {
|
|
|
|
}
|
|
|
|
void Component::LoadFromXml(tinyxml2::XMLDocument* doc) {
|
|
|
|
}
|
|
|
|
void Component::Serialize(RakNet::BitStream& outBitStream, bool isConstruction) {
|
|
|
|
}
|