mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Initialize class/struct variables with default values in platform/ and editor/
This commit is contained in:
parent
d1231be1c8
commit
e1811b689b
87 changed files with 411 additions and 540 deletions
|
|
@ -47,13 +47,13 @@ class EditorSettings : public Resource {
|
|||
|
||||
public:
|
||||
struct Plugin {
|
||||
EditorPlugin *instance;
|
||||
EditorPlugin *instance = nullptr;
|
||||
String path;
|
||||
String name;
|
||||
String author;
|
||||
String version;
|
||||
String description;
|
||||
bool installs;
|
||||
bool installs = false;
|
||||
String script;
|
||||
Vector<String> install_files;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue