diff options
Diffstat (limited to 'test/src/example.h')
-rw-r--r-- | test/src/example.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/src/example.h b/test/src/example.h index 40f934f..a7ae54c 100644 --- a/test/src/example.h +++ b/test/src/example.h @@ -129,6 +129,8 @@ public: int test_tarray_arg(const TypedArray<int64_t> &p_array); TypedArray<Vector2> test_tarray() const; Dictionary test_dictionary() const; + int test_tdictionary_arg(const TypedDictionary<String, int64_t> &p_dictionary); + TypedDictionary<Vector2, Vector2i> test_tdictionary() const; Example *test_node_argument(Example *p_node) const; String test_string_ops() const; String test_str_utility() const; @@ -274,4 +276,14 @@ public: ~ExampleRuntime(); }; +class ExamplePrzykład : public RefCounted { + GDCLASS(ExamplePrzykład, RefCounted); + +protected: + static void _bind_methods(); + +public: + String get_the_word() const; +}; + #endif // EXAMPLE_CLASS_H |