mirror of
https://github.com/Squareville/TestEventServer.git
synced 2025-12-31 09:09:45 -06:00
12 lines
320 B
C++
12 lines
320 B
C++
#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;
|
|
};
|
|
|