mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 21:47:24 +00:00
8 lines
163 B
C++
8 lines
163 B
C++
#include "Component.h"
|
|
#include "DluAssert.h"
|
|
|
|
Component::Component(Entity* owningEntity) {
|
|
DluAssert(owningEntity != nullptr);
|
|
m_ParentEntity = owningEntity;
|
|
}
|