1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-07-13 06:35:42 +00:00
Funkin/source/Section.hx
Nennneko5787 8c028d6bbe Error in Character.hx
Why is this?
2023-03-04 10:27:19 +09:00

33 lines
587 B
Haxe

package;
typedef SwagSection =
{
var sectionNotes:Array<Dynamic>;
var lengthInSteps:Int;
var typeOfSection:Int;
var mustHitSection:Bool;
var bpm:Float;
var changeBPM:Bool;
var altAnim:Bool;
var noteType:Int;
}
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;
}
}