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

19 lines
369 B
C#
Raw Normal View History

2019-09-19 10:28:02 +00:00
using UnityEngine;
using UnityEngine.EventSystems;
namespace BetterTee.Viewer
{
2019-09-21 00:24:30 +00:00
public class ActViewer
2019-09-19 10:28:02 +00:00
{
[Header("Settings")]
public ActSettings settings = null;
protected ActPhase phase = ActPhase.NONE;
[Header("Objects")]
public Canvas canvas = null;
public EventSystem eventSystem = null;
}
}