Funkin/source/animate/TimelineFrame.hx
2021-08-19 14:53:18 -04:00

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);
}
}