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