Exemplo n.º 1
0
 public void Action(int number, uLink.RPCMode mode, params object[] arguments)
 {
     base.networkView.RPC(ActionRPC(number), mode, arguments);
 }
Exemplo n.º 2
0
 public void Action <T>(int number, uLink.RPCMode mode, T argument)
 {
     base.networkView.RPC <T>(ActionRPC(number), mode, argument);
 }
Exemplo n.º 3
0
 public void ActionStream(int number, uLink.RPCMode mode, uLink.BitStream stream)
 {
     base.networkView.RPC <byte[]>(ActionRPCBitstream(number), mode, stream.GetDataByteArray());
 }
Exemplo n.º 4
0
 public void Action(int number, uLink.RPCMode mode)
 {
     base.networkView.RPC(ActionRPC(number), mode, new object[0]);
 }
Exemplo n.º 5
0
 protected SupplyCrate(IDFlags idFlags) : base(idFlags)
 {
     this.updateRPCMode = uLink.RPCMode.Others;
 }
 // Token: 0x0600387E RID: 14462 RVA: 0x000C8968 File Offset: 0x000C6B68
 public void ActionStream(int number, uLink.RPCMode mode, BitStream stream)
 {
     base.networkView.RPC <byte[]>(global::ItemRepresentation.ActionRPCBitstream(number), mode, stream.GetDataByteArray());
 }
 // Token: 0x06003875 RID: 14453 RVA: 0x000C8868 File Offset: 0x000C6A68
 public void Action(int number, uLink.RPCMode mode, params object[] arguments)
 {
     base.networkView.RPC(global::ItemRepresentation.ActionRPC(number), mode, arguments);
 }
 // Token: 0x06003874 RID: 14452 RVA: 0x000C8850 File Offset: 0x000C6A50
 public void Action <T>(int number, uLink.RPCMode mode, T argument)
 {
     base.networkView.RPC <T>(global::ItemRepresentation.ActionRPC(number), mode, argument);
 }
 // Token: 0x06003873 RID: 14451 RVA: 0x000C8834 File Offset: 0x000C6A34
 public void Action(int number, uLink.RPCMode mode)
 {
     base.networkView.RPC(global::ItemRepresentation.ActionRPC(number), mode, new object[0]);
 }