Files
2025-07-06 00:23:46 +02:00

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);
}