-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathAtlas.h
executable file
·50 lines (46 loc) · 846 Bytes
/
Atlas.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef __ATLAS_H_
#define __ATLAS_H_
enum eAtlas {
eWheel0 = 0,
eWheel1,
eWheel2,
eWheel3,
eWheel4,
eWheel5,
eHole,
eNoHole,
eCracking,
eCockpitTop,
eCockpitLeft,
eCockpitRight,
eCockpitBottom,
eCockpitWL,
eCockpitWR,
eHole2,
eNoHole2,
eCracking2,
eCockpitTop2,
eCockpitLeft2,
eCockpitRight2,
eCockpitBottom2,
eCockpitWL2,
eCockpitWR2,
eEngine,
eEngineFlames0,
eEngineFlames1,
eEngineFlames2,
eRoadYellowDark,
eRoadYellowLight,
eRoadRedDark,
eRoadRedLight,
eRoadBlack,
eRoadWhite,
eRoadYellowDark2,
eRoadYellowLight2,
eRoadRedDark2,
eRoadRedLight2,
eLAST
};
extern float atlas_tx1[eLAST], atlas_tx2[eLAST], atlas_ty1[eLAST], atlas_ty2[eLAST];
void InitAtlasCoord();
#endif //__ATLAS_H_