mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-12-30 18:00:12 -06:00
9 lines
220 B
C++
9 lines
220 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;
|
|
};
|