summaryrefslogtreecommitdiffstats
path: root/src/Frontend.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-05-30 23:00:00 +0200
committeraap <aap@papnet.eu>2019-05-30 23:00:00 +0200
commit2bf6674afc6b3a243f536fb30e313b055b35d533 (patch)
tree351b461596d6f80ea5ca0aa7bd34939ac8accf5f /src/Frontend.h
parentimplemented some higher level functions; added lots of stubs; switched top and bottom in CRect (diff)
downloadre3-2bf6674afc6b3a243f536fb30e313b055b35d533.tar
re3-2bf6674afc6b3a243f536fb30e313b055b35d533.tar.gz
re3-2bf6674afc6b3a243f536fb30e313b055b35d533.tar.bz2
re3-2bf6674afc6b3a243f536fb30e313b055b35d533.tar.lz
re3-2bf6674afc6b3a243f536fb30e313b055b35d533.tar.xz
re3-2bf6674afc6b3a243f536fb30e313b055b35d533.tar.zst
re3-2bf6674afc6b3a243f536fb30e313b055b35d533.zip
Diffstat (limited to 'src/Frontend.h')
-rw-r--r--src/Frontend.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/Frontend.h b/src/Frontend.h
index 3d7b6914..838139df 100644
--- a/src/Frontend.h
+++ b/src/Frontend.h
@@ -2,6 +2,14 @@
#include "Sprite2d.h"
+enum {
+ LANGUAGE_AMERICAN,
+ LANGUAGE_FRENCH,
+ LANGUAGE_GERMAN,
+ LANGUAGE_ITALIAN,
+ LANGUAGE_SPANISH,
+};
+
struct tSkinInfo
{
int field_0;
@@ -11,7 +19,6 @@ struct tSkinInfo
int field_304;
};
-
class CMenuManager
{
public:
@@ -77,6 +84,7 @@ public:
int m_nScreenChangeDelayTimer;
static int &m_PrefsBrightness;
+ static int &m_PrefsLanguage;
void DrawFrontEnd(void);
};