namespace Sandbox;
///
/// Specifies how a should be networked.
///
[Expose]
public enum NetworkMode
{
///
/// Never network this .
///
[Title( "Never Network" )]
[Icon( "wifi_off" )]
Never,
///
/// Network this as a single network object. Objects networked in this
/// way can have an owner, and synchronized properties with .
///
[Title( "Network Object" )]
[Icon( "wifi" )]
Object,
///
/// Network this to other clients as part of the snapshot.
///
[Title( "Network Snapshot" )]
[Icon( "network_wifi_2_bar" )]
Snapshot
}