1
0

SharedStatusIconSystem.cs 459 B

123456789
  1. namespace Content.Shared.StatusIcon;
  2. public abstract class SharedStatusIconSystem : EntitySystem
  3. {
  4. // If you are trying to add logic for status icons here, you're probably in the wrong place.
  5. // Status icons are gathered and rendered entirely clientside.
  6. // If you wish to use data to render icons, you should replicate that data to the client
  7. // and subscribe to GetStatusIconsEvent in order to add the relevant icon to a given entity.
  8. }