group2 0.1.0
CSE 125 Group 2
Loading...
Searching...
No Matches
HealthPackSpawnerSystem.hpp
Go to the documentation of this file.
1
3
4#pragma once
5
7
9namespace systems
10{
11
12constexpr float healthPackCooldownTime = 15.0f;
13
17void runHealthPackSpawners(Registry& registry, float dt);
18
19} // 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 DebugUI.hpp:15
constexpr float healthPackCooldownTime
Definition HealthPackSpawnerSystem.hpp:12
void runHealthPackSpawners(Registry &registry, float dt)
Tick spawners: check player overlap for pickup, manage cooldowns.
Definition HealthPackSpawnerSystem.cpp:40