Skip to content

Commit

Permalink
Update Hscript.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
Joalor64GH authored Nov 7, 2024
1 parent 87e6e53 commit cc5e237
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/modding/Hscript.hx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class Hscript extends FlxBasic {
return null;
}

public function importScript(source) {
public function importScript(source:String):Void {
if (source == null)
return;
var name:String = StringTools.replace(source, '.', '/');
Expand All @@ -210,7 +210,7 @@ class Hscript extends FlxBasic {
return script.getAll();
}

public function getAll() {
public function getAll():Void {
var balls = {};

for (i in locals.keys())
Expand Down

0 comments on commit cc5e237

Please sign in to comment.