DOPE SHIT ALL DAY LETS GOOOOO

This commit is contained in:
Cameron Taylor
2020-10-03 23:42:58 -07:00
parent 75a02413de
commit 0839f21e71
33 changed files with 561 additions and 30 deletions

14
source/Charting.hx Normal file
View File

@@ -0,0 +1,14 @@
package;
import flixel.FlxG;
import flixel.FlxState;
class Charting extends FlxState
{
override function create()
{
FlxG.sound.music.stop();
super.create();
}
}