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