RemoveMarker() 공개 메소드

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