Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef __SP_INTERNALDECLARATIONS_H__
00009 #define __SP_INTERNALDECLARATIONS_H__
00010
00011
00012 #include "Base/spStandard.hpp"
00013
00014
00015 namespace sp
00016 {
00017
00018
00019 static const s32 MAX_COUNT_OF_KEYCODES = 256;
00020 static const s32 MAX_COUNT_OF_MOUSEKEYS = 5;
00021
00022
00023
00024 extern bool __isKey [MAX_COUNT_OF_KEYCODES];
00025 extern bool __wasKey[MAX_COUNT_OF_KEYCODES];
00026 extern bool __hitKey[MAX_COUNT_OF_KEYCODES];
00027
00028 extern bool __isMouseKey [MAX_COUNT_OF_MOUSEKEYS];
00029 extern bool __wasMouseKey [MAX_COUNT_OF_MOUSEKEYS];
00030 extern bool __hitMouseKey [MAX_COUNT_OF_MOUSEKEYS];
00031 extern bool __dbclkMouseKey [MAX_COUNT_OF_MOUSEKEYS];
00032
00033 extern bool __isLighting, __isFog, __isTexturing;
00034
00035 extern f32 __GeneralRunTime;
00036
00037
00038 }
00039
00040
00041 #endif
00042
00043
00044
00045