1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 01:00:53 +00:00
Funkin/source/animate/TimelineFrame.hx

15 lines
261 B
Haxe
Raw Normal View History

2021-08-19 18:53:18 +00:00
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);
}
}