riversong code showcase
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using Cysharp.Threading.Tasks;
|
||||
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
public interface IAnalyticsService
|
||||
{
|
||||
UniTask InitializeAsync();
|
||||
|
||||
void RecordSessionStarted(string sessionId);
|
||||
|
||||
void RecordBuildingConstructionCompleted(string sessionId, string buildingName);
|
||||
|
||||
void RecordHouseUpgraded(string sessionId, string buildingName, int fromTier, int toTier);
|
||||
|
||||
void RecordHeartbeat(string sessionId, int heartbeatIndex, float playtimeSeconds, int totalBuildingsPlaced, int population);
|
||||
|
||||
void RecordDemoCompleted(string sessionId, float playtimeSeconds, int totalWeeks, int population, float happiness);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user