Exemplo n.º 1
0
 public static void SendTrainMessage(this Player player, TrainMessage val)
 {
     SendTrainMessage(MessageDestination.OneReliable, IntPtr.Zero, player.Pointer, val);
 }
Exemplo n.º 2
0
 public static void SendTrainMessage(MessageDestination destination, TrainMessage val)
 {
     SendTrainMessage(destination, IntPtr.Zero, IntPtr.Zero , val.Speed);
 }
Exemplo n.º 3
0
 public static void SendTrainMessage(this Player player, IntPtr floatValue, TrainMessage val)
 {
     SendTrainMessage(MessageDestination.OneReliable, floatValue, player.Pointer, val);
 }
Exemplo n.º 4
0
 public static void SendTrainMessage(MessageDestination destination, IntPtr playerEntity, TrainMessage val)
 {
     SendTrainMessage(destination, IntPtr.Zero, playerEntity , val.Speed);
 }