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

14 lines
291 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
using UnityEngine;
namespace DunGen
{
public static class EditorConstants
{
public static readonly Color DoorRectColour = Color.green;
public static readonly Color DoorDirectionColour = new Color(0.39f, 0.58f, 0.93f);
public static readonly Color DoorUpColour = Color.green;
}
}