using System.Collections; using System.Collections.Generic; using UnityEngine; namespace KairoEngine.Core.GameActions { public interface IGameActionContextVariable { string text { get; } T GetValue<T>(T defaultValue); } }