Exemplo n.º 1
0
 public IEnumerator CloneCharacterDbById(Coroutine coroutine, ChatService _this, CloneCharacterDbByIdInMessage msg)
 {
     msg.Reply((int)ErrorCodes.OK);
     yield break;
 }
Exemplo n.º 2
0
 public IEnumerator SSGetCurrentAnchor(Coroutine coroutine, ChatService _this, SSGetCurrentAnchorInMessage msg)
 {
     msg.Response = AnchorManager.Instance.GetCurrentAnchor();
     msg.Reply();
     yield break;
 }
Exemplo n.º 3
0
 public IEnumerator UpdateServer(Coroutine coroutine, ChatService _this, UpdateServerInMessage msg)
 {
     ChatServer.Instance.UpdateManager.Update();
     return(null);
 }
Exemplo n.º 4
0
 public IEnumerator GetAnchorIsInRoom(Coroutine coroutine, ChatService _this, GetAnchorIsInRoomInMessage msg)
 {
     msg.Response = AnchorManager.Instance.IsInAnchorRooml;
     msg.Reply();
     yield break;
 }