28 lines
No EOL
804 B
C#
28 lines
No EOL
804 B
C#
using System.Collections.Generic;
|
|
using TouchyTickets;
|
|
|
|
namespace iOS {
|
|
public class IosPlatform : Platform {
|
|
|
|
public override void SetupAds() {
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public override void SetupAnalytics(Dictionary<string, object> json) {
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public override void AddResourceEvent(bool sink, string currency, float amount, string itemType, string itemId) {
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public override void SetKeepScreenOn(bool keep) {
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public override void OpenRateLink() {
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
}
|
|
} |