diff options
| author | Ariel Manzur | 2016-04-29 10:50:56 -0300 |
|---|---|---|
| committer | Ariel Manzur | 2016-04-29 10:50:56 -0300 |
| commit | b50c00ff9065ee0073c79bd5c3f11296a5f6965f (patch) | |
| tree | 845f1f3fce5960e8478ad8a4b2c9fb904c277f66 /platform/iphone/ios.h | |
| parent | 6d22e03b96b95a07a49d25cf31cd623079ec1e3b (diff) | |
| download | godot-b50c00ff9065ee0073c79bd5c3f11296a5f6965f.tar.gz godot-b50c00ff9065ee0073c79bd5c3f11296a5f6965f.tar.zst godot-b50c00ff9065ee0073c79bd5c3f11296a5f6965f.zip | |
Diffstat (limited to 'platform/iphone/ios.h')
| -rw-r--r-- | platform/iphone/ios.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/platform/iphone/ios.h b/platform/iphone/ios.h new file mode 100644 index 000000000..0e4661520 --- /dev/null +++ b/platform/iphone/ios.h @@ -0,0 +1,20 @@ +#ifndef IOS_H +#define IOS_H + +#include "core/object.h" + +class iOS : public Object { + + OBJ_TYPE(iOS, Object); + + static void _bind_methods(); + +public: + + String get_rate_url(int p_app_id) const; + + iOS(); + +}; + +#endif |
