group2 0.1.0
CSE 125 Group 2
Loading...
Searching...
No Matches
Systems.hpp
Go to the documentation of this file.
1
3
4#pragma once
5
7
14namespace systems
15{
16
20inline void update(Registry& registry, float dt)
21{
22 (void)registry;
23 (void)dt;
24}
25
26} // 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
void update(Registry &registry, float dt)
Placeholder system — replace with real logic.
Definition Systems.hpp:20