diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-05-28 11:58:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-28 11:58:20 +0200 |
commit | 98846b39ee039358584884b439b96e799f1d2bd0 (patch) | |
tree | eb53811acc9e5e3d8003e406ba0caa800bd46552 /core/engine.h | |
parent | cdb5186d7e0c0c1374686cdd92015c233b62ee64 (diff) | |
parent | 1433c2cbbb89df1edb0b727c9781481af5705f59 (diff) | |
download | redot-engine-98846b39ee039358584884b439b96e799f1d2bd0.tar.gz |
Merge pull request #18899 from ibrahn/gdscript-license-info
GDScript access to copyright, license, author and donor information.
Diffstat (limited to 'core/engine.h')
-rw-r--r-- | core/engine.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/engine.h b/core/engine.h index 665992699a..031ba29cd6 100644 --- a/core/engine.h +++ b/core/engine.h @@ -118,6 +118,11 @@ public: #endif 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; Engine(); }; |