RemoveMarker() public method

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
return void
Beispiel #1
0
 public void RemoveMarkerReq(int card, Guid id, string name, ushort count)
 {
     _broadcaster.RemoveMarker(_clients[_sender].Id, card, id, name, count);
 }
Beispiel #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);
 }
Beispiel #3
0
 public void RemoveMarkerReq(int card, Guid id, string name, ushort count)
 {
     _broadcaster.RemoveMarker(State.Instance.GetPlayer(_sender).Id, card, id, name, count);
 }