new chart editor, sm file support, bpm changes, and scroll speed changes.
This commit is contained in:
@ -12,4 +12,5 @@ class HelperFunctions
|
||||
public static function GCD(a, b) {
|
||||
return b == 0 ? FlxMath.absInt(a) : GCD(b, a % b);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user