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