mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 12:18:22 +00:00
15 lines
379 B
C++
15 lines
379 B
C++
|
#include "NTNaomiDirtServer.h"
|
||
|
|
||
|
namespace {
|
||
|
std::map<int32_t, std::string> VisibilityMissionTable = {
|
||
|
{1253, std::string("Dirt_Clouds_Sent")},
|
||
|
{1276, std::string("Dirt_Clouds_Assem")},
|
||
|
{1277, std::string("Dirt_Clouds_Para")},
|
||
|
{1283, std::string("Dirt_Clouds_Halls")}
|
||
|
};
|
||
|
};
|
||
|
|
||
|
void NTNaomiDirtServer::OnStartup(Entity* self) {
|
||
|
SetGameVariables(VisibilityMissionTable);
|
||
|
}
|