Fixed not being able to select notes, and fixed the delete note bug.

This commit is contained in:
NeeEoo
2021-07-02 14:57:46 +02:00
parent 1263e69444
commit ececb4c3b2
3 changed files with 6 additions and 4 deletions

View File

@ -2,7 +2,7 @@ package;
typedef SwagSection =
{
var sectionNotes:Array<Dynamic>;
var sectionNotes:Array<Array<Dynamic>>;
var lengthInSteps:Int;
var typeOfSection:Int;
var mustHitSection:Bool;
@ -13,7 +13,7 @@ typedef SwagSection =
class Section
{
public var sectionNotes:Array<Dynamic> = [];
public var sectionNotes:Array<Array<Dynamic>> = [];
public var lengthInSteps:Int = 16;
public var typeOfSection:Int = 0;