mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
RobustToolbox projects should be named Robust.* This PR changes the RobustToolbox projects from SS14.* to Robust.* Updates SS14.* prefixes/namespaces to Robust.* Updates SpaceStation14.sln to RobustToolbox.sln Updates MSBUILD/SS14.* to MSBUILD/Robust.* Updates CSProject and MSBuild references for the above Updates git_helper.py Removes Runserver and Runclient as they are unusable
29 lines
806 B
C#
29 lines
806 B
C#
using System;
|
|
using System.Collections;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Robust.Shared.ViewVariables
|
|
{
|
|
/// <summary>
|
|
/// Pre-defined simple VV traits used by the engine.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public enum ViewVariablesTraits
|
|
{
|
|
/// <summary>
|
|
/// This object has VV-accessible members (field or property with the <see cref="ViewVariablesAttribute"/>.
|
|
/// </summary>
|
|
Members,
|
|
|
|
/// <summary>
|
|
/// This object implements <see cref="IEnumerable"/> and as such can be viewed as a sequence.
|
|
/// </summary>
|
|
Enumerable,
|
|
|
|
/// <summary>
|
|
/// This object is an entity and has a list of components that can be viewed.
|
|
/// </summary>
|
|
Entity,
|
|
}
|
|
}
|