Engine²
Open-source game engine written in C++.
Loading...
Searching...
No Matches
Shutdown.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <entt/entt.hpp>
4
6
7namespace Engine::Scheduler {
10class Shutdown : public AScheduler {
11 public:
14
16 void RunSystems() override;
17};
18} // namespace Engine::Scheduler
AScheduler(Core &core)
Constructor of the AScheduler class.
Definition AScheduler.hpp:20
Shutdown scheduler that runs systems only once when engine shuts down.
Definition Shutdown.hpp:10
AScheduler(Core &core)
Constructor of the AScheduler class.
Definition AScheduler.hpp:20
void RunSystems() override
Run the systems according to the scheduler policy.
Definition Shutdown.cpp:6
Definition AScheduler.cpp:7