group2 0.1.0
CSE 125 Group 2
Loading...
Searching...
No Matches
RespawnPoint.hpp
Go to the documentation of this file.
1
3
4#pragma once
5
13{
14 float cooldown = 0.0f;
15 bool available = true;
16};
ECS component: player respawn point with cooldown state.
Definition RespawnPoint.hpp:13
float cooldown
Seconds remaining before the point is preferred again.
Definition RespawnPoint.hpp:14
bool available
True when cooldown has elapsed (ready for use).
Definition RespawnPoint.hpp:15