1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-09 17:30:43 +00:00

Strongly typed palette entries.

This commit is contained in:
Tim Sarbin 2019-02-24 23:36:34 -05:00
parent e33c85b919
commit 4ec7dbef43

View File

@ -4,27 +4,27 @@
#include <string>
namespace OpenDiablo2::Game::Common {
class Palette {
public:
const std::string Act1 = "ACT1";
const std::string Act2 = "ACT2";
const std::string Act3 = "ACT3";
const std::string Act4 = "ACT4";
const std::string Act5 = "ACT5";
const std::string EndGame = "EndGame";
const std::string EndGame2 = "EndGame2";
const std::string Fechar = "fechar";
const std::string Loading = "loading";
const std::string Menu0 = "Menu0";
const std::string Menu1 = "menu1";
const std::string Menu2 = "menu2";
const std::string Menu3 = "menu3";
const std::string Menu4 = "menu4";
const std::string Sky = "Sky";
const std::string Static = "STATIC";
const std::string Trademark = "Trademark";
const std::string Units = "Units";
typedef std::string Entry;
const Entry Act1 = "ACT1";
const Entry Act2 = "ACT2";
const Entry Act3 = "ACT3";
const Entry Act4 = "ACT4";
const Entry Act5 = "ACT5";
const Entry EndGame = "EndGame";
const Entry EndGame2 = "EndGame2";
const Entry Fechar = "fechar";
const Entry Loading = "loading";
const Entry Menu0 = "Menu0";
const Entry Menu1 = "menu1";
const Entry Menu2 = "menu2";
const Entry Menu3 = "menu3";
const Entry Menu4 = "menu4";
const Entry Sky = "Sky";
const Entry Static = "STATIC";
const Entry Trademark = "Trademark";
const Entry Units = "Units";
private:
Palette() {}
};