mirror of
https://github.com/Steffo99/better-tee.git
synced 2024-11-22 23:34:18 +00:00
19 lines
374 B
C#
19 lines
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;
|
||
|
}
|
||
|
|
||
|
}
|