2020-06-09 19:03:55 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using TouchyTickets;
|
|
|
|
|
|
|
|
namespace iOS {
|
2020-06-14 01:18:12 +02:00
|
|
|
public class IosPlatform : Platform {
|
2020-06-09 19:03:55 +02:00
|
|
|
|
2020-07-21 20:26:52 +02:00
|
|
|
public override void SetupOnlineInteractions(Dictionary<string, object> analyticsJson) {
|
2020-07-08 18:23:57 +02:00
|
|
|
throw new System.NotImplementedException();
|
2020-06-09 19:03:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void AddResourceEvent(bool sink, string currency, float amount, string itemType, string itemId) {
|
2020-07-08 18:23:57 +02:00
|
|
|
throw new System.NotImplementedException();
|
2020-06-09 19:03:55 +02:00
|
|
|
}
|
|
|
|
|
2020-06-29 16:14:08 +02:00
|
|
|
public override void SetKeepScreenOn(bool keep) {
|
|
|
|
throw new System.NotImplementedException();
|
|
|
|
}
|
|
|
|
|
2020-06-30 19:06:35 +02:00
|
|
|
public override void OpenRateLink() {
|
|
|
|
throw new System.NotImplementedException();
|
|
|
|
}
|
|
|
|
|
2020-07-21 21:51:30 +02:00
|
|
|
public override void GainAchievement(Achievement achievement) {
|
|
|
|
throw new System.NotImplementedException();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void ShowAchievements() {
|
|
|
|
throw new System.NotImplementedException();
|
|
|
|
}
|
|
|
|
|
2020-06-09 19:03:55 +02:00
|
|
|
}
|
|
|
|
}
|