using System;
using System.Collections;
using Robust.Shared.Serialization;
namespace Robust.Shared.ViewVariables
{
///
/// Pre-defined simple VV traits used by the engine.
///
[Serializable, NetSerializable]
public enum ViewVariablesTraits : byte
{
///
/// This object has VV-accessible members (field or property with the .
///
Members,
///
/// This object implements and as such can be viewed as a sequence.
///
Enumerable,
///
/// This object is an entity and has a list of components that can be viewed.
///
Entity,
}
}