12 lines
207 B
C#
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; }
|
|
}
|
|
}
|
|
|