CHARTING SHIT IN PROGRESS

This commit is contained in:
Cameron Taylor
2020-10-13 01:07:04 -07:00
parent 405f362a73
commit 5ecd641b13
7 changed files with 198 additions and 21 deletions

16
source/Section.hx Normal file
View File

@ -0,0 +1,16 @@
package;
class Section
{
/**
* NOT ACTUAL NOTE DATA! Just holds strum time and which part of the chart it is!
*/
public var notes:Array<Dynamic> = [];
public var lengthInSteps:Int = 16;
public function new(lengthInSteps:Int = 16)
{
this.lengthInSteps = lengthInSteps;
}
}