using System; using System.Collections.Generic; namespace ShiroginSDK.Runtime.Services.Interfaces { /// /// Provides Facebook SDK features: initialization, login, and analytics logging. /// public interface IFacebookService { void Initialize(); void Login(Action callback = null); void LogPurchase(float amount, string currency); void LogEvent(string eventName, float? value = null, Dictionary parameters = null); } }