mirror of
https://github.com/godotengine/godot
synced 2024-11-02 05:26:46 +00:00
Use static inner classes in Godot Java code
This commit is contained in:
parent
a8fb450b3c
commit
23e152040b
1 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ public class GodotIO {
|
|||
|
||||
public int last_file_id = 1;
|
||||
|
||||
class AssetData {
|
||||
static class AssetData {
|
||||
public boolean eof = false;
|
||||
public String path;
|
||||
public InputStream is;
|
||||
|
@ -230,7 +230,7 @@ public class GodotIO {
|
|||
/// DIRECTORIES
|
||||
/////////////////////////
|
||||
|
||||
class AssetDir {
|
||||
static class AssetDir {
|
||||
public String[] files;
|
||||
public int current;
|
||||
public String path;
|
||||
|
|
Loading…
Reference in a new issue