Status Icons (#17529)

This commit is contained in:
Nemanja
2023-06-27 20:31:53 -04:00
committed by GitHub
parent 19864b444d
commit 044d5f6853
12 changed files with 276 additions and 0 deletions

View File

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