namespace Sandbox;
///
/// An interface for networked properties via .
///
internal interface INetworkProperty
{
///
/// Called when initializing with a network table at the specified slot.
///
/// Our slot index in the network table
/// The object we belong to
void Init( int slot, INetworkProxy parent );
}