1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-16 15:09:20 +00:00
Funkin/source/Section.hx
2020-10-13 01:07:04 -07:00

17 lines
287 B
Haxe

package;
class Section
{
/**
* NOT ACTUAL NOTE DATA! Just holds strum time and which part of the chart it is!
*/
public var notes:Array<Dynamic> = [];
public var lengthInSteps:Int = 16;
public function new(lengthInSteps:Int = 16)
{
this.lengthInSteps = lengthInSteps;
}
}