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

12 lines
188 B
C#
Raw Normal View History

2025-03-04 16:34:31 +08:00
using System.Collections;
using System.Collections.Generic;
namespace Net.Project.B.AI
{
public interface INpcSpawnService
{
public int MaxNpcCount { get; set; }
}
}