Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Joalor64GH authored Dec 13, 2024
1 parent f815490 commit 660a1fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions haxelibs.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
},
{
"name": "flixel-ui",
"type": "haxelib",
"version": "2.6.1"
"type": "haxelib"
},
{
"name": "hxcpp",
Expand Down
6 changes: 3 additions & 3 deletions source/backend/Paths.hx
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ enum SpriteSheetType {
class Paths {
inline public static final DEFAULT_FOLDER:String = 'assets';

public static final SOUND_EXT:Array<String> = ['.ogg', '.wav'];
public static final HSCRIPT_EXT:Array<String> = ['.hx', '.hxs', '.hxc', '.hscript'];

public static final getText:String->String = #if sys File.getContent #else Assets.getText #end;

public static var SOUND_EXT:Array<String> = ['.ogg', '.wav'];
public static var HSCRIPT_EXT:Array<String> = ['.hx', '.hxs', '.hxc', '.hscript'];

public static var currentTrackedAssets:Map<String, FlxGraphic> = [];
public static var currentTrackedSounds:Map<String, Sound> = [];
public static var localTrackedAssets:Array<String> = [];
Expand Down

0 comments on commit 660a1fe

Please sign in to comment.