Funkin/source/Section.hx

21 lines
377 B
Haxe
Raw Normal View History

2020-10-13 08:07:04 +00:00
package;
class Section
{
2020-10-19 02:18:06 +00:00
public var sectionNotes:Array<Dynamic> = [];
2020-10-13 08:07:04 +00:00
public var lengthInSteps:Int = 16;
2020-10-16 04:22:13 +00:00
public var typeOfSection:Int = 0;
public var mustHitSection:Bool = true;
/**
* Copies the first section into the second section!
*/
public static var COPYCAT:Int = 0;
2020-10-13 08:07:04 +00:00
public function new(lengthInSteps:Int = 16)
{
this.lengthInSteps = lengthInSteps;
}
}