3 #include <Framework/Hit.h>
7 Camera* Camera::cameraNow;
9 std::mt19937 Rand::engine;
11 const Color Color::Black(0x00,0x00,0x00);
12 const Color Color::Dilver(0xc0, 0xc0, 0xc0);
13 const Color Color::Gray(0x80, 0x80, 0x80);
14 const Color Color::White(0xff, 0xff, 0xff);
15 const Color Color::Maroon(0x80, 0x00, 0x00);
16 const Color Color::Red(0xff, 0x00, 0x00);
17 const Color Color::Purple(0x80, 0x00, 0x80);
18 const Color Color::Fuchsia(0xff, 0x00, 0xff);
19 const Color Color::Green(0x00, 0x80, 0x00);
20 const Color Color::Lime(0x00, 0xff, 0x00);
21 const Color Color::Olive(0x80, 0x80, 0x00);
22 const Color Color::Yellow(0xff, 0xff, 0x00);
23 const Color Color::Navy(0x00, 0x00, 0x80);
24 const Color Color::Blue(0x00, 0x00, 0xff);
25 const Color Color::Teal(0x00, 0x80, 0x80);
26 const Color Color::Aqua(0x00, 0xff, 0xff);
32 Touch Input::touch[10];
33 Gesture Input::gesture;
37 Font Drawing::defaultFont;