mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-22 23:57:50 -05:00
8 lines
304 B
Haxe
8 lines
304 B
Haxe
package funkin.modding.base;
|
|
|
|
/**
|
|
* A script that can be tied to an FlxSpriteGroup.
|
|
* Create a scripted class that extends FlxSpriteGroup to use this.
|
|
*/
|
|
@:hscriptClass
|
|
class ScriptedFlxSpriteGroup extends flixel.group.FlxSpriteGroup.FlxTypedSpriteGroup<flixel.FlxSprite> implements HScriptedClass {}
|