Files
Net.Project.B/Src/Npc/IScriptableNpcSpawn.cs
CortexCore d6e6888bb7 1
2025-03-04 16:34:31 +08:00

12 lines
207 B
C#

using System.Collections;
using System.Collections.Generic;
namespace Net.Project.B.AI
{
public interface IScriptableNpcSpawn
{
IReadOnlyDictionary<string, int> NpcWeights { get; }
}
}