Example #1
0
 static NetObject()
 {
     RPCSourceConnection = null;
     RPCDestConnection   = null;
     PIsInitialUpdate    = false;
     _dirtyList          = null;
 }
Example #2
0
 static NetInterface()
 {
     GhostConnection.RegisterNetClassReps();
 }
Example #3
0
 public void SetOwningConnection(GhostConnection ev)
 {
     OwningConnection = ev;
 }
Example #4
0
 public virtual void UnpackUpdate(GhostConnection connection, BitStream stream)
 {
 }
Example #5
0
 public virtual void PerformScopeQuery(GhostConnection connection)
 {
     connection.ObjectInScope(this);
 }
Example #6
0
 public virtual ulong PackUpdate(GhostConnection connection, ulong updateMask, BitStream stream)
 {
     return(0UL);
 }
Example #7
0
 public virtual void OnGhostAvailable(GhostConnection theConnection)
 {
 }
Example #8
0
 public virtual bool OnGhostAdd(GhostConnection theConnection)
 {
     return(true);
 }
Example #9
0
 public static void SetRPCDestConnection(GhostConnection destConnection)
 {
     RPCDestConnection = destConnection;
 }
Example #10
0
 public static void SetRPCSourceConnection(GhostConnection connection)
 {
     RPCSourceConnection = connection;
 }