#include <System.hpp>
|
| virtual | ~ISystem ()=default |
| | Virtual destructor to allow safe polymorphic destruction.
|
| |
| virtual void | update (Registry &)=0 |
| | Pure virtual function executed by all concrete systems.
|
| |
◆ ~ISystem()
| virtual ecs::ISystem::~ISystem |
( |
| ) |
|
|
virtualdefault |
Virtual destructor to allow safe polymorphic destruction.
◆ update()
| virtual void ecs::ISystem::update |
( |
Registry & |
| ) |
|
|
pure virtual |
Pure virtual function executed by all concrete systems.
This function defines the logic a system performs during the update phase.
- Parameters
-
| registry | Reference to the ECS registry. |
Implemented in MoveSystem, DisplaySystem, and HealthSystem.
The documentation for this class was generated from the following file: