-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathburningSystem.hpp
36 lines (30 loc) · 1.18 KB
/
burningSystem.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 BURNINGSYSTEM_HPP
#define BURNINGSYSTEM_HPP
#include "components.hpp"
#include "ecsSystem.hpp"
#include "ecsWorld.hpp"
///////////////////////////////////////////////////////////////////////////
/// Use the shared mini namespace
using namespace mini;
/////////////////////////////////////////////////////////////////////////
/// \class BurningSystem
/// \brief System used to lower the health of burning entities.
class BurningSystem final : public ecsSystem {
public:
///////////////////////////////////////////////////////////////////////////
/// \brief Construct a cleanup system.
/// \param gameWorld reference to the engine's game world.
explicit BurningSystem(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 // BURNINGSYSTEM_HPP