mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 16:17:53 -05:00
20 lines
377 B
Haxe
20 lines
377 B
Haxe
package;
|
|
|
|
class Section
|
|
{
|
|
public var sectionNotes:Array<Dynamic> = [];
|
|
|
|
public var lengthInSteps:Int = 16;
|
|
public var typeOfSection:Int = 0;
|
|
public var mustHitSection:Bool = true;
|
|
|
|
/**
|
|
* Copies the first section into the second section!
|
|
*/
|
|
public static var COPYCAT:Int = 0;
|
|
|
|
public function new(lengthInSteps:Int = 16)
|
|
{
|
|
this.lengthInSteps = lengthInSteps;
|
|
}
|
|
}
|