示例#1
0
 public override void Update(int id)
 {
     if (ADAGE.users != null && ADAGE.users.ContainsKey(id))
     {
         virtual_context = ADAGE.users[id].vContext;
     }
 }
示例#2
0
 public ADAGEUser()
 {
     playerName        = "EMPTY";
     username          = "******";
     email             = "*****@*****.**";
     adageId           = "EMPTY";
     adageAccessToken  = "EMPTY";
     adageRefreshToken = "EMPTY";
     fbAccessToken     = "EMPTY";
     facebookId        = "EMPTY";
     fbExpiresAt       = new DateTime();
     adageExpiresAt    = new DateTime();
     guest             = false;
     dataWrapper       = new ADAGEUploadWrapper();
     localWrapper      = new ADAGEUploadWrapper();
     pContext          = new ADAGEPositionalContext();
     vContext          = new ADAGEVirtualContext(Application.loadedLevelName);
     duration          = 0f;
 }
示例#3
0
 public ADAGEGameEvent()
 {
     virtual_context = new ADAGEVirtualContext();
 }