Beispiel #1
0
 static extern int native_host_service(ENetHost *host, out ENetEvent @event, uint timeout);
Beispiel #2
0
 public override int host_service(ENetHost *host, out ENetEvent @event, uint timeout)
 {
     return(native_host_service(host, out @event, timeout));
 }
Beispiel #3
0
 static extern int native_host_check_events(ENetHost *host, out ENetEvent @event);
Beispiel #4
0
 public override int host_check_events(ENetHost *host, out ENetEvent @event)
 {
     return(native_host_check_events(host, out @event));
 }
Beispiel #5
0
 public abstract int host_service(ENetHost *host, out ENetEvent @event, uint timeout);
Beispiel #6
0
 public abstract int host_check_events(ENetHost *host, out ENetEvent @event);
Beispiel #7
0
 public static int enet_host_service(ENetHost *host, out ENetEvent @event, uint timeout)
 {
     return(Platform.host_service(host, out @event, timeout));
 }
Beispiel #8
0
 public static int enet_host_check_events(ENetHost *host, out ENetEvent @event)
 {
     return(Platform.host_check_events(host, out @event));
 }