group2 0.1.0
CSE 125 Group 2
Loading...
Searching...
No Matches
HitboxHistorySystem.hpp
Go to the documentation of this file.
1
11
12#pragma once
13
15
16#include <cstdint>
17
18namespace systems
19{
20
36void pushHitboxHistory(Registry& registry, uint32_t serverTick);
37
38} // 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
void pushHitboxHistory(Registry &registry, uint32_t serverTick)
Capture this tick's hitbox capsules into each entity's HitboxHistory ring.
Definition HitboxHistorySystem.cpp:14