Files
Nitrox/NitroxServer/GameLogic/Entities/Spawning/IEntitySpawner.cs
2025-07-06 00:23:46 +02:00

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