DarkflameServer/dScripts/02_server/Map/General/TouchMissionUpdateServer.h

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

12 lines
320 B
C
Raw Normal View History

#pragma once
#include "CppScripts.h"
class TouchMissionUpdateServer : public CppScripts::Script
{
public:
void OnStartup(Entity* self) override;
void OnCollisionPhantom(Entity* self, Entity* target) override;
void OnProximityUpdate(Entity* self, Entity* entering, std::string name, std::string status) override;
};