This commit is contained in:
CortexCore
2025-03-04 16:34:31 +08:00
parent 4402ae533b
commit d6e6888bb7
18 changed files with 230 additions and 1 deletions

View File

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