mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
10 lines
248 B
C#
10 lines
248 B
C#
using ServerManagerTool.Enums;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ServerManagerTool.Interface
|
|
{
|
|
public interface ISpawnIniValuesCollection
|
|
{
|
|
IEnumerable<string> ToIniValues(NPCSpawnContainerType containerType);
|
|
}
|
|
}
|