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

12 lines
297 B
C#

using NitroxServer.Serialization.World;
namespace NitroxServer.GameLogic;
/// <summary>
/// Holds a set of instructions to be ran when a world is created. There should be one Subnautica and one for BZ.
/// </summary>
public interface IWorldModifier
{
public void ModifyWorld(World world);
}