SDXFrameWork  0.07
SDXFrameWork
 全て クラス ネームスペース 関数 変数 列挙型 列挙型の値 ページ
SDXafx.h
1 #pragma once//☀SDL
2 //多重定義の関係でプリコンパイル済みヘッダーにのみインクルードするヘッダー
3 #include <Framework/Hit.h>
4 
5 namespace SDX
6 {
7 Camera* Camera::cameraNow;
8 
9 std::mt19937 Rand::engine;
10 
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);
27 
28 int Input::handle;
29 Joypad Input::pad;
30 Mouse Input::mouse;
31 Keyboard Input::key;
32 Touch Input::touch[10];
33 Gesture Input::gesture;
34 
35 bool System::isEnd;
36 
37 Font Drawing::defaultFont;
38 
39 Time Time::singleton;
40 
41 int Music::nowVolume;
42 }