mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
13 lines
368 B
C++
13 lines
368 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class NtVentureCannonServer : public CppScripts::Script
|
|
{
|
|
public:
|
|
void OnUse(Entity* self, Entity* user) override;
|
|
void EnterCannonEnded(Entity* self, Entity* player);
|
|
void ExitCannonEnded(Entity* self, Entity* player);
|
|
void UnlockCannonPlayer(Entity* self, Entity* player);
|
|
void FirePlayer(Entity* self, Entity* player);
|
|
};
|