group2 0.1.0
CSE 125 Group 2
Loading...
Searching...
No Matches
PowerupSpawner.hpp
Go to the documentation of this file.
1
3
4#pragma once
5#include "glm/fwd.hpp"
6
7
8enum class PowerupType : uint8_t
9{
12};
13
21
PowerupType
Definition PowerupSpawner.hpp:9
@ Shield
Definition PowerupSpawner.hpp:11
@ Damage
Definition PowerupSpawner.hpp:10
ECS component: world powerup pickup point with respawn cooldown.
Definition PowerupSpawner.hpp:16
float spawnCooldown
Seconds remaining before the powerup reappears.
Definition PowerupSpawner.hpp:18
bool hasPowerup
True if powerup is available for pickup.
Definition PowerupSpawner.hpp:19
PowerupType type
Type of powerup this spawner provides.
Definition PowerupSpawner.hpp:17