mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-10 08:44:47 +00:00
13 lines
310 B
Haxe
13 lines
310 B
Haxe
package funkin.modding;
|
|
|
|
import polymod.hscript.HScriptable;
|
|
|
|
/**
|
|
* Functions annotated with @:hscript will call the relevant script.
|
|
*/
|
|
@:hscript({
|
|
// ALL of these values are added to ALL scripts in the child classes.
|
|
context: [FlxG, FlxSprite, Math, Paths, Std]
|
|
})
|
|
interface IHook extends HScriptable {}
|