2021-11-26 07:54:32 -06:00
|
|
|
namespace Content.Server.Maps.NameGenerators;
|
|
|
|
|
|
|
|
|
|
[ImplicitDataDefinitionForInheritors]
|
2023-08-22 18:14:33 -07:00
|
|
|
public abstract partial class StationNameGenerator
|
2021-11-26 07:54:32 -06:00
|
|
|
{
|
|
|
|
|
public abstract string FormatName(string input);
|
|
|
|
|
}
|