Net.Project.B/Src/Npc/INpcSpawnService.cs

13 lines
214 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
namespace Net.Project.B.AI
{
public interface INpcSpawnService:IDisposable
{
public int MaxNpcCount { get; set; }
}
}