mirror of
https://github.com/tiennm99/godot.git
synced 2026-08-05 06:22:04 +00:00
Moved member variables to initializer list
This commit is contained in:
@@ -222,11 +222,10 @@ String EditorExportPreset::get_custom_features() const {
|
||||
return custom_features;
|
||||
}
|
||||
|
||||
EditorExportPreset::EditorExportPreset() {
|
||||
|
||||
export_path = "";
|
||||
export_filter = EXPORT_ALL_RESOURCES;
|
||||
runnable = false;
|
||||
EditorExportPreset::EditorExportPreset() :
|
||||
export_filter(EXPORT_ALL_RESOURCES),
|
||||
export_path(""),
|
||||
runnable(false) {
|
||||
}
|
||||
|
||||
///////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user