mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-01-01 09:19:31 -06:00
9 lines
214 B
C++
9 lines
214 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class AgStagePlatforms : public CppScripts::Script {
|
|
public:
|
|
void OnStartup(Entity* self) override;
|
|
void OnWaypointReached(Entity* self, uint32_t waypointIndex) override;
|
|
};
|