GuruSDKService/Runtime/GuruSDKService.Model.cs

26 lines
587 B
C#
Raw Normal View History

using Guru;
namespace GuruService
{
public static partial class GuruSDKService
{
private static void InitSDKModel()
{
if (_serviceImp != null)
{
SetGuruSDK_BLevel(_serviceImp.GetBLevel());
SetGuruSDK_BPlay(_serviceImp.GetBPlay());
}
}
public static void SetGuruSDK_BLevel(int level)
{
GuruSDK.SuccessLevelCount = level;
}
public static void SetGuruSDK_BPlay(int play)
{
GuruSDK.TotalPlayedCount = play;
}
}
}