mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Add a new HashSet template
* Intended to replace RBSet in most cases. * Optimized for iteration speed
This commit is contained in:
parent
410893ad0f
commit
45af29da80
243 changed files with 1400 additions and 662 deletions
|
|
@ -56,11 +56,11 @@ public:
|
|||
};
|
||||
|
||||
private:
|
||||
RBSet<StringName> disabled_classes;
|
||||
RBSet<StringName> disabled_editors;
|
||||
HashMap<StringName, RBSet<StringName>> disabled_properties;
|
||||
HashSet<StringName> disabled_classes;
|
||||
HashSet<StringName> disabled_editors;
|
||||
HashMap<StringName, HashSet<StringName>> disabled_properties;
|
||||
|
||||
RBSet<StringName> collapsed_classes;
|
||||
HashSet<StringName> collapsed_classes;
|
||||
|
||||
bool features_disabled[FEATURE_MAX];
|
||||
static const char *feature_names[FEATURE_MAX];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue