diff options
author | David Snopek <dsnopek@gmail.com> | 2023-07-26 14:22:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 14:22:34 -0500 |
commit | d15550fdee5ce28c0e6aac8745fe515e849eea06 (patch) | |
tree | 81f67ce9d12781dac2b47345d9ff3de25e806962 /include/godot_cpp/core/class_db.hpp | |
parent | 3162be28e594bf5b17889117670fc6f2d75f2f0c (diff) | |
parent | 7d8cb7c155c805b2dcc0f0a091fde2bcacb98fa6 (diff) | |
download | redot-cpp-d15550fdee5ce28c0e6aac8745fe515e849eea06.tar.gz |
Merge pull request #1186 from mihe/indexed-properties
Add support for indexed properties
Diffstat (limited to 'include/godot_cpp/core/class_db.hpp')
-rw-r--r-- | include/godot_cpp/core/class_db.hpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/godot_cpp/core/class_db.hpp b/include/godot_cpp/core/class_db.hpp index b1625bf..7026a30 100644 --- a/include/godot_cpp/core/class_db.hpp +++ b/include/godot_cpp/core/class_db.hpp @@ -79,15 +79,6 @@ class ClassDB { friend class godot::GDExtensionBinding; public: - struct PropertySetGet { - int index; - StringName setter; - StringName getter; - MethodBind *_setptr; - MethodBind *_getptr; - Variant::Type type; - }; - struct ClassInfo { StringName name; StringName parent_name; |