Esempio n. 1
0
 private void HandleGameAccountClientSnapshot(byte[] data)
 {
     using (var stream = new MemoryStream(data))
     {
         GameAccountClient = Serializer.Deserialize <CSOEconGameAccountClient>(stream);
         Client.PostCallback(new GameAccountClientSnapshot(GameAccountClient));
     }
 }
Esempio n. 2
0
 internal GameAccountClientSnapshot(CSOEconGameAccountClient cli)
 {
     client = cli;
 }