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