diff options
| author | Rémi Verschelde | 2018-05-28 11:58:20 +0200 |
|---|---|---|
| committer | GitHub | 2018-05-28 11:58:20 +0200 |
| commit | 98846b39ee039358584884b439b96e799f1d2bd0 (patch) | |
| tree | eb53811acc9e5e3d8003e406ba0caa800bd46552 /core/bind/core_bind.h | |
| parent | cdb5186d7e0c0c1374686cdd92015c233b62ee64 (diff) | |
| parent | 1433c2cbbb89df1edb0b727c9781481af5705f59 (diff) | |
| download | godot-98846b39ee039358584884b439b96e799f1d2bd0.tar.gz godot-98846b39ee039358584884b439b96e799f1d2bd0.tar.zst godot-98846b39ee039358584884b439b96e799f1d2bd0.zip | |
Merge pull request #18899 from ibrahn/gdscript-license-info
GDScript access to copyright, license, author and donor information.
Diffstat (limited to 'core/bind/core_bind.h')
| -rw-r--r-- | core/bind/core_bind.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h index a363f5970..1de5e43b2 100644 --- a/core/bind/core_bind.h +++ b/core/bind/core_bind.h @@ -689,6 +689,11 @@ public: MainLoop *get_main_loop() const; Dictionary get_version_info() const; + Dictionary get_author_info() const; + Array get_copyright_info() const; + Dictionary get_donor_info() const; + Dictionary get_license_info() const; + String get_license_text() const; bool is_in_physics_frame() const; |
