Add indicator showing amount of ghost roles available (#5150)
* Add indicator showing amount of ghost roles available * Make the indicator turn red if ghost roles are available
This commit is contained in:
@@ -113,4 +113,15 @@ namespace Content.Shared.Ghost
|
||||
public class GhostReturnToBodyRequest : EntityEventArgs
|
||||
{
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public class GhostUpdateGhostRoleCountEvent : EntityEventArgs
|
||||
{
|
||||
public int AvailableGhostRoles { get; }
|
||||
|
||||
public GhostUpdateGhostRoleCountEvent(int v)
|
||||
{
|
||||
AvailableGhostRoles = v;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user