using System.Collections.Generic; using NitroxModel.DataStructures; using NitroxModel.DataStructures.GameLogic; namespace NitroxServer.GameLogic.Entities.Spawning { public interface IEntitySpawner { List LoadUnspawnedEntities(NitroxInt3 batchId, bool fullCacheCreation = false); } }