summaryrefslogtreecommitdiffstats
path: root/src/ui/maindialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/maindialog.h')
-rw-r--r--src/ui/maindialog.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/ui/maindialog.h b/src/ui/maindialog.h
index 4062c8d..9173dde 100644
--- a/src/ui/maindialog.h
+++ b/src/ui/maindialog.h
@@ -34,25 +34,23 @@ class CParticule;
class CSound;
-#define USERLISTMAX 100
-#define MAXSCENE 1000
+const int USERLISTMAX = 100;
+const int MAXSCENE = 1000;
-typedef struct
+struct SceneInfo
{
char numTry;
char bPassed;
-}
-SceneInfo;
+};
-typedef struct
+struct GamerPerso
{
int face; // face
int glasses; // glasses
D3DCOLORVALUE colorHair; // hair color
D3DCOLORVALUE colorCombi; // spacesuit volor
D3DCOLORVALUE colorBand; // strips color
-}
-GamerPerso;
+};