mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
2cc13c6499
* Make serialize actually virtual * fix serialize and make update virutal * Update VendorComponent.h * Remove flag var * Update SoundTriggerComponent.h --------- Co-authored-by: Aaron Kimbrell <aronwk.aaron@gmail.com>
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) {
|
|
|
|
}
|