Defs.cpp
Go to the documentation of this file.
1 #include "Defs.hpp"
2 
3 namespace comp
4 {
5 
6 namespace Defs
7 {
8 
9 namespace Log
10 {
11  const iv::LogId Simulation = iv::LogId::create( "Simulation" );
12  const iv::LogId Sectors = iv::LogId::create( "Sectors" );
13 
14 }
15 
16 namespace Input
17 {
18  const iv::InputId GameStateButtonTrigger = iv::InputId::create( "GameStateButtonTrigger" );
19 }
20 
21 namespace Time
22 {
23  const iv::TimeId Physics = iv::TimeId::create( "Physics" );
24 }
25 
26 }
27 
28 }