12 lines
315 B
C#
12 lines
315 B
C#
using System.Collections.Generic;
|
|
using NitroxModel.DataStructures;
|
|
using NitroxModel.DataStructures.GameLogic;
|
|
|
|
namespace NitroxServer.GameLogic.Entities.Spawning
|
|
{
|
|
public interface IEntitySpawner
|
|
{
|
|
List<Entity> LoadUnspawnedEntities(NitroxInt3 batchId, bool fullCacheCreation = false);
|
|
}
|
|
}
|