DarkflameServer/dGame/dComponents/Component.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
331 B
C++
Raw Normal View History

#include "Component.h"
void Component::Update(float deltaTime) {
2022-07-28 13:39:57 +00:00
}
void Component::OnUse(Entity* originator) {
2022-07-28 13:39:57 +00:00
}
void Component::UpdateXml(tinyxml2::XMLDocument& doc) {
2022-07-28 13:39:57 +00:00
}
void Component::LoadFromXml(const tinyxml2::XMLDocument& doc) {
}
void Component::Serialize(RakNet::BitStream& outBitStream, bool isConstruction) {
}