com.puzzlescapegames.singular_adapter 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -57,12 +57,6 @@ namespace PuzzlescapeGames.SingularAdapter
|
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
public void FlushEvents() {}
|
|
60
|
-
|
|
61
|
-
public void SendRevenue( AdRevenueData data )
|
|
62
|
-
{
|
|
63
|
-
var ad = new SingularAdData( data.Network, data.Currency, data.Revenue );
|
|
64
|
-
SingularSDK.AdRevenue( ad );
|
|
65
|
-
}
|
|
66
60
|
|
|
67
61
|
private void LogEvent( string id )
|
|
68
62
|
{
|
|
@@ -86,9 +80,11 @@ namespace PuzzlescapeGames.SingularAdapter
|
|
|
86
80
|
#endif
|
|
87
81
|
}
|
|
88
82
|
|
|
89
|
-
|
|
83
|
+
|
|
84
|
+
public void SendRevenue( AdRevenueData data )
|
|
90
85
|
{
|
|
91
|
-
|
|
86
|
+
var ad = new SingularAdData( data.Network, data.Currency, data.Revenue );
|
|
87
|
+
SingularSDK.AdRevenue( ad );
|
|
92
88
|
}
|
|
93
89
|
|
|
94
90
|
public void SendIAPPurchase( Order order, bool isRestoredTransaction = false )
|
package/package.json
CHANGED