namespace FishNet.Managing.Observing
{
///
/// A configuration which affects the level of detail for a connection.
///
public struct LevelOfDetail
{
///
/// How often data will send when on this level of detail.
///
public ushort SendInterval;
///
/// Distance a connection's objects must be within to use this LevelOfDetail.
///
public ushort Distance;
}
}