CHARTING SHIT IN PROGRESS
This commit is contained in:
16
source/Section.hx
Normal file
16
source/Section.hx
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user