diff options
Diffstat (limited to 'test/src/example.h')
-rw-r--r-- | test/src/example.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/src/example.h b/test/src/example.h index e9565f9..44c1531 100644 --- a/test/src/example.h +++ b/test/src/example.h @@ -107,4 +107,18 @@ public: VARIANT_ENUM_CAST(Example, Constants); +class ExampleVirtual : public Object { + GDCLASS(ExampleVirtual, Object); + +protected: + static void _bind_methods() {} +}; + +class ExampleAbstract : public Object { + GDCLASS(ExampleAbstract, Object); + +protected: + static void _bind_methods() {} +}; + #endif // EXAMPLE_CLASS_H |