mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-23 05:53:34 +00:00
22 lines
331 B
C++
22 lines
331 B
C++
#include "Component.h"
|
|
|
|
void Component::Update(float deltaTime) {
|
|
|
|
}
|
|
|
|
void Component::OnUse(Entity* originator) {
|
|
|
|
}
|
|
|
|
void Component::UpdateXml(tinyxml2::XMLDocument& doc) {
|
|
|
|
}
|
|
|
|
void Component::LoadFromXml(const tinyxml2::XMLDocument& doc) {
|
|
|
|
}
|
|
|
|
void Component::Serialize(RakNet::BitStream& outBitStream, bool isConstruction) {
|
|
|
|
}
|