mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-07 23:34:46 +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;
|
||
|
}
|
||
|
}
|