You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-20 14:45:44 +00:00
Use static inner classes in Godot Java code
(cherry picked from commit 23e152040b)
This commit is contained in:
committed by
Rémi Verschelde
parent
f252622d82
commit
4b03e05573
@@ -74,7 +74,7 @@ public class GodotIO {
|
|||||||
|
|
||||||
public int last_file_id = 1;
|
public int last_file_id = 1;
|
||||||
|
|
||||||
class AssetData {
|
static class AssetData {
|
||||||
public boolean eof = false;
|
public boolean eof = false;
|
||||||
public String path;
|
public String path;
|
||||||
public InputStream is;
|
public InputStream is;
|
||||||
@@ -233,7 +233,7 @@ public class GodotIO {
|
|||||||
/// DIRECTORIES
|
/// DIRECTORIES
|
||||||
/////////////////////////
|
/////////////////////////
|
||||||
|
|
||||||
class AssetDir {
|
static class AssetDir {
|
||||||
public String[] files;
|
public String[] files;
|
||||||
public int current;
|
public int current;
|
||||||
public String path;
|
public String path;
|
||||||
|
|||||||
Reference in New Issue
Block a user