1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-19 16:41:39 +00:00
Funkin/source/funkin/play/stage/StageProp.hx

33 lines
700 B
Haxe
Raw Normal View History

2023-02-03 23:10:06 +00:00
package funkin.play.stage;
import funkin.modding.events.ScriptEvent;
import funkin.graphics.FunkinSprite;
import funkin.modding.IScriptedClass.IStateStageProp;
2023-02-03 23:10:06 +00:00
class StageProp extends FunkinSprite implements IStateStageProp
2023-02-03 23:10:06 +00:00
{
/**
* An internal name for this prop.
*/
public var name:String = '';
2023-02-03 23:10:06 +00:00
public function new()
{
super();
}
/**
* Called when this prop is added to the stage.
2023-06-08 20:30:45 +00:00
* @param event
*/
public function onAdd(event:ScriptEvent):Void {}
public function onScriptEvent(event:ScriptEvent) {}
public function onCreate(event:ScriptEvent) {}
public function onDestroy(event:ScriptEvent) {}
public function onUpdate(event:UpdateScriptEvent) {}
2023-02-03 23:10:06 +00:00
}