]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/ecs/main.qc
ECS framework
[xonotic/xonotic-data.pk3dir.git] / qcsrc / ecs / main.qc
1 #include "main.qh"
2
3 #include "components/_mod.qh"
4 #include "events/_mod.qh"
5 #include "systems/_mod.qh"
6
7 void systems_update()
8 {
9         float realtime = time;
10         SYSTEM_UPDATE(phys);
11         time = realtime;
12 }