9 lines
218 B
C#
9 lines
218 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NitroxModel.DataStructures.GameLogic.Entities;
|
|
|
|
public interface IUwePrefabFactory
|
|
{
|
|
public bool TryGetPossiblePrefabs(string biomeType, out List<UwePrefab> prefabs);
|
|
}
|