8 lines
192 B
C#
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);
|