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