TransferMarker() 공개 메소드

public TransferMarker ( byte player, int from, int to, System.Guid id, string name, ushort count, ushort origCount, bool isScriptChange ) : void
player byte
from int
to int
id System.Guid
name string
count ushort
origCount ushort
isScriptChange bool
리턴 void
예제 #1
0
파일: Handler.cs 프로젝트: totalgit/OCTGN
 public void TransferMarkerReq(int from, int to, Guid id, string name, ushort count)
 {
     _broadcaster.TransferMarker(_clients[_sender].Id, from, to, id, name, count);
 }
예제 #2
0
 public void TransferMarkerReq(int from, int to, Guid id, string name, ushort count, ushort oldCount, bool isScriptChange)
 {
     _broadcaster.TransferMarker(State.Instance.GetPlayer(_sender).Id, from, to, id, name, count, oldCount, isScriptChange);
 }
예제 #3
0
파일: Handler.cs 프로젝트: karlnp/OCTGN
 public void TransferMarkerReq(int from, int to, Guid id, string name, ushort count)
 {
     _broadcaster.TransferMarker(State.Instance.GetPlayer(_sender).Id, from, to, id, name, count);
 }