VV for entity systems. (#2447)

This commit is contained in:
Moony
2022-01-25 13:29:17 +01:00
committed by GitHub
parent 2b79ef301d
commit fad4c20da2
5 changed files with 58 additions and 1 deletions
@@ -84,4 +84,15 @@ namespace Robust.Shared.ViewVariables
public string TypeName { get; }
}
[Serializable, NetSerializable]
public class ViewVariablesEntitySystemSelector : ViewVariablesObjectSelector
{
public ViewVariablesEntitySystemSelector(string typeName)
{
TypeName = typeName;
}
public string TypeName { get; }
}
}