1
0

IEntityControl.cs 345 B

12345678910
  1. namespace Content.Client.UserInterface;
  2. /// <summary>
  3. /// Simple interface that indicates that the given control is associated with some entity.
  4. /// This is primarily intended to be used with VV, so that you can easily open the VV window to examine an entity.
  5. /// </summary>
  6. public interface IEntityControl
  7. {
  8. EntityUid? UiEntity { get; }
  9. }