1
Fork 0
mirror of https://github.com/Steffo99/better-tee.git synced 2024-11-25 16:34:17 +00:00
better-tee/Assets/Code/Viewer/ActViewer.cs

19 lines
No EOL
369 B
C#

using UnityEngine;
using UnityEngine.EventSystems;
namespace BetterTee.Viewer
{
public class ActViewer
{
[Header("Settings")]
public ActSettings settings = null;
protected ActPhase phase = ActPhase.NONE;
[Header("Objects")]
public Canvas canvas = null;
public EventSystem eventSystem = null;
}
}