public void LockRequestResponse(System.Net.IPEndPoint netconnection, OSMP.NetworkInterfaces.IReplicated targetobject, System.Boolean LockCreated)
 {
     rpc.SendRpc(connection, "OSMP.NetworkInterfaces.ILockRpcToClient", "LockRequestResponse", new object[] { netconnection, targetobject, LockCreated });
 }
Exemple #2
0
 public void RequestResendWorld(  )
 {
     rpc.SendRpc(connection, "OSMP.NetworkInterfaces.IWorldControl", "RequestResendWorld", new object[] {  });
 }
 public void SayHello(  )
 {
    rpc.SendRpc( connection, "OSMP.Testing.ITestInterface", "SayHello",  new object[]{  } );
 }
Exemple #4
0
 public void RequestLock(System.Net.IPEndPoint netconnection, OSMP.NetworkInterfaces.IReplicated targetobject)
 {
     rpc.SendRpc(connection, "OSMP.NetworkInterfaces.ILockRpcToServer", "RequestLock", new object[] { netconnection, targetobject });
 }
Exemple #5
0
 public void ObjectCreated(System.Int32 remoteclientreference, System.String entitytypename, System.Int32 attributebitmap, System.Byte[] entitydata)
 {
     rpc.SendRpc(connection, "OSMP.NetworkInterfaces.IObjectReplicationClientToServer", "ObjectCreated", new object[] { remoteclientreference, entitytypename, attributebitmap, entitydata });
 }
 public void ObjectCreatedServerToCreatorClient(System.Int32 clientreference, System.Int32 globalreference)
 {
     rpc.SendRpc(connection, "OSMP.NetworkInterfaces.IObjectReplicationServerToClient", "ObjectCreatedServerToCreatorClient", new object[] { clientreference, globalreference });
 }