-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentityCleanupSystem.hpp
36 lines (30 loc) · 1.22 KB
/
entityCleanupSystem.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once
#ifndef ENTITYCLEANUPSYSTEM_HPP
#define ENTITYCLEANUPSYSTEM_HPP
#include "components.hpp"
#include "ecsSystem.hpp"
#include "ecsWorld.hpp"
///////////////////////////////////////////////////////////////////////////
/// Use the shared mini namespace
using namespace mini;
/////////////////////////////////////////////////////////////////////////
/// \class EntityCleanupSystem
/// \brief System used to delete out-of-bounds or dead entities;
class EntityCleanupSystem final : public ecsSystem {
public:
///////////////////////////////////////////////////////////////////////////
/// \brief Construct a cleanup system.
/// \param gameWorld reference to the engine's game world.
explicit EntityCleanupSystem(ecsWorld& gameWorld);
///////////////////////////////////////////////////////////////////////////
/// \brief Tick this system by deltaTime.
/// \param deltaTime the amount of time passed since last update.
/// \param components the components to update.
void updateComponents(
const double&,
const std::vector<std::vector<ecsBaseComponent*>>& entityComponents)
final;
private:
ecsWorld& m_gameWorld;
};
#endif // ENTITYCLEANUPSYSTEM_HPP