NHSE/NHSE.Core/Structures/INamedObject.cs
Kurt 7b24142014 Add building editor
names tbd
untested
2020-03-31 15:10:17 -07:00

10 lines
162 B
C#

using System.Collections.Generic;
namespace NHSE.Core
{
public interface INamedObject
{
string ToString(IReadOnlyList<string> names);
}
}