1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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