Moved class_name and return_val to initializer list

This commit is contained in:
Wilson E. Alvarez
2017-09-14 12:54:37 -04:00
parent 8c08f2380d
commit 0f4643a4f6
2 changed files with 9 additions and 8 deletions

View File

@ -148,6 +148,7 @@ struct PropertyInfo {
hint(PROPERTY_HINT_NONE),
usage(PROPERTY_USAGE_DEFAULT) {
}
PropertyInfo(Variant::Type p_type, const String p_name, PropertyHint p_hint = PROPERTY_HINT_NONE, const String &p_hint_string = "", uint32_t p_usage = PROPERTY_USAGE_DEFAULT, const StringName &p_class_name = StringName())
: type(p_type),
name(p_name),
@ -161,12 +162,12 @@ struct PropertyInfo {
class_name = p_class_name;
}
}
PropertyInfo(const StringName &p_class_name)
: type(Variant::OBJECT),
class_name(p_class_name),
hint(PROPERTY_HINT_NONE),
usage(PROPERTY_USAGE_DEFAULT) {
class_name = p_class_name;
}
bool operator<(const PropertyInfo &p_info) const {