Defs.cpp
Go to the documentation of this file.
1 #include "Defs.hpp"
2 
3 namespace iv
4 {
5 namespace Defs
6 {
7 
8 namespace Style
9 {
10  const LumaStyleId Default = LumaStyleId::create( "Default" );
11 }
12 
13 namespace Input
14 {
15  const InputId UI_Up = InputId::create( "UI_Up" );
16  const InputId UI_Down = InputId::create( "UI_Down" );
17  const InputId UI_Left = InputId::create( "UI_Left" );
18  const InputId UI_Right = InputId::create( "UI_Right" );
19  const InputId UI_MousePrimary = InputId::create( "UI_MousePrimary" );
20 }
21 
22 }
23 }