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

8 lines
192 B
C#

using System;
using System.Collections.Generic;
namespace NitroxServer.GameLogic.Entities;
[Serializable]
public record struct NitroxEntitySlot(string BiomeType, List<string> AllowedTypes);