group2 0.1.0
CSE 125 Group 2
Loading...
Searching...
No Matches
MatchSystem.hpp
Go to the documentation of this file.
1
3
5
6namespace systems
7{
9bool handleWinCondition(Registry& registry, int killsToWin);
10
12void resetStats(Registry& registry);
13} // namespace systems
Shared ECS registry type alias for the game engine.
entt::registry Registry
Shared ECS registry type alias.
Definition Registry.hpp:11
Client-only input sampling system — split into two halves so mouse look can run every iterate() (smoo...
Definition InputSampleSystem.hpp:21
bool handleWinCondition(Registry &registry, int killsToWin)
Checks if any player has met win condition and updates their PlayerMatchStats accordingly.
Definition MatchSystem.cpp:12
void resetStats(Registry &registry)
Resets all players' match scores to initial values.
Definition MatchSystem.cpp:25