mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 14:07:20 +00:00
716a5fcf37
And add more virtuals
40 lines
521 B
C++
40 lines
521 B
C++
#include "Component.h"
|
|
#include "DluAssert.h"
|
|
|
|
Component::Component(Entity* owningEntity) {
|
|
DluAssert(owningEntity != nullptr);
|
|
m_OwningEntity = owningEntity;
|
|
}
|
|
|
|
Component::~Component() {
|
|
|
|
}
|
|
|
|
void Component::Update(float deltaTime) {
|
|
|
|
}
|
|
|
|
void Component::OnUse(Entity* originator) {
|
|
|
|
}
|
|
|
|
void Component::UpdateXml(tinyxml2::XMLDocument* doc) {
|
|
|
|
}
|
|
|
|
void Component::LoadFromXml(tinyxml2::XMLDocument* doc) {
|
|
|
|
}
|
|
|
|
void Component::Startup() {
|
|
|
|
}
|
|
|
|
void Component::LoadConfigData() {
|
|
|
|
}
|
|
|
|
void Component::LoadTemplateData() {
|
|
|
|
}
|