mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-02-24 23:54:07 -05:00
14 lines
261 B
Haxe
14 lines
261 B
Haxe
package animate;
|
|
|
|
import flixel.FlxSprite;
|
|
import flixel.util.FlxColor;
|
|
|
|
class TimelineFrame extends FlxSprite
|
|
{
|
|
public function new(x:Float, y:Float, length:Int = 0)
|
|
{
|
|
super(x, y);
|
|
|
|
makeGraphic((10 * length) + (2 * (length - 1)), 10, FlxColor.RED);
|
|
}
|
|
}
|