mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-08 03:37:45 +00:00
22 lines
No EOL
400 B
C++
22 lines
No EOL
400 B
C++
#include <Script/NativeScriptApi.h>
|
|
#include <ScriptObject.h>
|
|
#include <Actor/Player.h>
|
|
#include <Action/Action.h>
|
|
|
|
class ActionSyphonStrike3623 :
|
|
public Sapphire::ScriptAPI::ActionScript
|
|
{
|
|
public:
|
|
ActionSyphonStrike3623() :
|
|
Sapphire::ScriptAPI::ActionScript( 3623 )
|
|
{
|
|
}
|
|
|
|
void onExecute( Sapphire::Action::Action& action ) override
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
EXPOSE_SCRIPT( ActionSyphonStrike3623 ); |