1
Fork 0
mirror of https://github.com/Steffo99/better-tee.git synced 2024-11-22 15:24:18 +00:00
better-tee/Assets/Code/Viewer/ActViewer.cs
2019-09-19 12:28:02 +02:00

19 lines
No EOL
374 B
C#

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