14 lines
212 B
C#
14 lines
212 B
C#
using UnityEngine;
|
|
|
|
namespace DebuggingEssentials
|
|
{
|
|
public class SO_BaseWindow : ScriptableObject
|
|
{
|
|
public Color color = Color.white;
|
|
|
|
public float backgroundAlpha = 1f;
|
|
|
|
public float boxAlpha = 1f;
|
|
}
|
|
}
|