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

10 lines
288 B
C#

using NitroxModel.DataStructures.GameLogic.Entities;
using NitroxServer.Helper;
namespace NitroxServer.GameLogic.Entities.Spawning;
public interface IEntityBootstrapperManager
{
public void PrepareEntityIfRequired(ref WorldEntity spawnedEntity, DeterministicGenerator generator);
}