mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 15:21:56 -05:00
Initialize class/struct variables with default values in platform/ and editor/
This commit is contained in:
@@ -66,10 +66,10 @@ class JavaClass : public Reference {
|
||||
Map<StringName, Variant> constant_map;
|
||||
|
||||
struct MethodInfo {
|
||||
bool _static;
|
||||
bool _static = false;
|
||||
Vector<uint32_t> param_types;
|
||||
Vector<StringName> param_sigs;
|
||||
uint32_t return_type;
|
||||
uint32_t return_type = 0;
|
||||
jmethodID method;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user