IGameActionContextVariable.cs 255 B

12345678910111213
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace KairoEngine.Core.GameActions
  5. {
  6. public interface IGameActionContextVariable
  7. {
  8. string text { get; }
  9. T GetValue<T>(T defaultValue);
  10. }
  11. }