LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/DunGen/KeyLockPlacement.cs

13 lines
160 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
using System;
namespace DunGen
{
[Serializable]
public sealed class KeyLockPlacement
{
public int ID;
public IntRange Range = new IntRange(0, 1);
}
}