Khaotic Engine Reborn
|
Public Member Functions | |
Component (const Component &)=delete | |
Component & | operator= (const Component &)=delete |
Component (Component &&)=default | |
Component & | operator= (Component &&)=default |
virtual void | Initialize () |
virtual void | Update (float deltaTime) |
Definition at line 12 of file component.h.
|
inlinevirtual |
Virtual function to initialize the component.
Reimplemented in ecs::IdentityComponent, ecs::ModelPathComponent, ecs::PhysicsComponent, ecs::RenderComponent, and ecs::ShaderComponent.
Definition at line 28 of file component.h.
|
inlinevirtual |
Virtual function to update the component.
deltaTime | Time since the last update. |
Reimplemented in ecs::ModelPathComponent, ecs::PhysicsComponent, ecs::RenderComponent, and ecs::ShaderComponent.
Definition at line 34 of file component.h.