Example #1
0
 void _instance_OnAvatarChange(GameInstance sender, GameAvatarChangeEventArgs args)
 {
     throw new NotImplementedException();
 }
Example #2
0
 public GameCloudService(GameInstance implementor, string url, string hudServiceUrl)
 {
     _implementor   = implementor;
     _url           = url;
     _hudServiceUrl = hudServiceUrl;
 }
Example #3
0
 public GameAvatarInventory(GameInstance gameInstance, GameAvatar avatar) : base(gameInstance)
 {
     _avatar = avatar;
 }
Example #4
0
 public GameHud(GameInstance instance, IHubProxy proxy, string url)
 {
     _instance = instance;
     _proxy    = proxy;
     _url      = url;
 }
Example #5
0
 public GameStatistics(GameInstance instance, string storageDirectory) : base(instance)
 {
     _storageDirectory = storageDirectory;
     Attributes        = new List <GameStatisticsAttribute>();
 }