Files
FNF-i486-Engine/source/Section.hx
Miss Circle (Moxie) 8bf331ae68 somehow this got broken, plus other crap
closes #724 and #728
I didn't test the autosave shit btw, I don't have time rn
2024-11-08 07:03:24 -05:00

30 lines
573 B
Haxe

package;
typedef SwagSection =
{
var sectionNotes:Array<Dynamic>;
var sectionBeats:Float;
var typeOfSection:Int;
var mustHitSection:Bool;
var gfSection:Bool;
var bpm:Float;
var changeBPM:Bool;
var altAnim:Bool;
}
class Section
{
public var sectionNotes:Array<Dynamic> = [];
public var sectionBeats:Float = 4;
public var gfSection:Bool = false;
public var typeOfSection:Int = 0;
public var mustHitSection:Bool = true;
public function new(sectionBeats:Float = 4)
{
this.sectionBeats = sectionBeats;
trace('test created section: ' + sectionBeats);
}
}