Files
Net.Like.Xue.Tokyo/Packages-Local/Com.Project.B/Npc/INpcSpawnService.cs

13 lines
214 B
C#
Raw Normal View History

2025-06-24 23:49:13 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
namespace Net.Project.B.AI
{
public interface INpcSpawnService:IDisposable
{
public int MaxNpcCount { get; set; }
}
}