DarkflameServer/dScripts/02_server/Map/NT/NtDirtCloudServer.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
309 B
C
Raw Normal View History

#pragma once
#include "CppScripts.h"
class NtDirtCloudServer : public CppScripts::Script
{
public:
void OnStartup(Entity* self) override;
void OnSkillEventFired(Entity* self, Entity* caster, const std::string& message) override;
private:
static std::map<std::string, std::vector<int32_t>> m_Missions;
};