mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-24 07:43:56 +00:00
17 lines
287 B
Haxe
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;
|
|
}
|
|
}
|