resolving namespace std conflicts

This commit is contained in:
Raildex 2020-06-18 15:54:08 +02:00
parent a4e4bd702d
commit 2b4d1ca2e8
25 changed files with 233 additions and 234 deletions

View file

@ -1,6 +1,6 @@
#pragma once
// Define string ids
// Define std::string ids
#define STRING_PASSPORT 1
#define STRING_LARA_HOME 2
#define STRING_CONTROLS 3
@ -104,8 +104,8 @@
class LanguageScript
{
public:
string Name;
vector<string> Strings;
std::string Name;
std::vector<std::string> Strings;
LanguageScript(char* name);
~LanguageScript();