ServerManagers/src/ARKServerManager/Interface/ISpawnIniValuesCollection.cs
2021-01-07 16:23:23 +10:00

10 lines
248 B
C#

using ServerManagerTool.Enums;
using System.Collections.Generic;
namespace ServerManagerTool.Interface
{
public interface ISpawnIniValuesCollection
{
IEnumerable<string> ToIniValues(NPCSpawnContainerType containerType);
}
}