22 virtual void tick(
double deltaTimeSeconds );
This is the interface which is used to call a tick function on an object. Everything which should be ...
virtual ~ITickable()=default
virtual void tick(double deltaTimeSeconds)
Function called each frame when a tick component has been registered with EnTT Ecs::Tick.
virtual void preTick()
Function which executes immediately before the execution of ITickable::preTick()
virtual void postTick()
Function which executes immediately after the execution of ITickable::postTick()
Log category system implementation.