Files
OldThink/Content.Server/Maps/NameGenerators/GameMapNameGenerator.cs

10 lines
240 B
C#
Raw Normal View History

2021-11-26 07:54:32 -06:00
using Robust.Shared.Serialization.Manager.Attributes;
namespace Content.Server.Maps.NameGenerators;
[ImplicitDataDefinitionForInheritors]
public abstract class GameMapNameGenerator
{
public abstract string FormatName(string input);
}