Delta-v/Content.Shared/_DV/Objectives/Systems/SharedContractObjectiveSyst...

10 lines
225 B
C#

namespace Content.Shared._DV.Objectives.Systems;
public abstract class SharedContractObjectiveSystem : EntitySystem
{
public virtual string ContractName(EntityUid objective)
{
return Name(objective);
}
}