mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-11 13:07:45 +00:00
22 lines
400 B
C++
22 lines
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 );
|