* banker clothing resprite * dinazewwr * commandant cape resprite * guildmaster cloak * Guildmaster loadout * guildmaster job icon * key locks work * map update * guildmaster keys * guildmaster stamp * update guildmaster house * track demiplanes * player death track * localization * guildmaster objective * Update empire_orders.yml * fix * fix map
15 lines
429 B
C#
15 lines
429 B
C#
using Content.Shared._CP14.RoundStatistic;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server._CP14.RoundStatistic.DemiplaneDeath;
|
|
|
|
/// <summary>
|
|
/// Tracks the destruction or full-blown death of this entity.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class CP14DeathDemiplaneStatisticComponent : Component
|
|
{
|
|
[DataField]
|
|
public ProtoId<CP14RoundStatTrackerPrototype> Statistic = "DemiplaneDeaths";
|
|
}
|