1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 03:53:07 +01:00

Refactor LanguagePack to interface / implementation

This reduces the required amount of includes and definitions necessary in LanguagePack.h and having to declare private signatures twice.
This commit is contained in:
Ted John
2016-09-20 12:29:38 +01:00
parent 6496895e40
commit f31bf03ee9
4 changed files with 627 additions and 611 deletions

View File

@@ -21,6 +21,11 @@
#include "Object.h"
#include "StringTable.h"
extern "C"
{
#include "../localisation/localisation.h"
}
constexpr uint8 RCT2_LANGUAGE_ID_ENGLISH_UK = 0;
constexpr uint8 RCT2_LANGUAGE_ID_BLANK = 254;
constexpr uint8 RCT2_LANGUAGE_ID_END = 255;