little change to support mapeditor again
This commit is contained in:
parent
ad310e2baf
commit
3725577aac
|
@ -1 +1 @@
|
||||||
Subproject commit 9beb17daaeb170c127c39c5a5e4feb9d95ebed92
|
Subproject commit dd648e1431171bffe091b748744395780df7eba1
|
|
@ -25,7 +25,7 @@
|
||||||
#include "core/game.h"
|
#include "core/game.h"
|
||||||
#include <framework/core/resourcemanager.h>
|
#include <framework/core/resourcemanager.h>
|
||||||
|
|
||||||
OTClient::OTClient() : Application(Otc::AppCompactName)
|
OTClient::OTClient(const std::string& appName) : Application(appName)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
class OTClient : public Application
|
class OTClient : public Application
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
OTClient();
|
OTClient(const std::string &appName = Otc::AppCompactName);
|
||||||
void init(const std::vector<std::string>& args);
|
void init(const std::vector<std::string>& args);
|
||||||
void registerLuaFunctions();
|
void registerLuaFunctions();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue