1
Fork 0
mirror of https://github.com/Steffo99/better-tee.git synced 2024-11-25 16:34:17 +00:00
better-tee/Assets/Refactored/Form/FormItem.cs

10 lines
187 B
C#
Raw Normal View History

2019-09-22 22:23:35 +00:00
using UnityEngine;
namespace BetterTee.Form {
public abstract class FormItem : MonoBehaviour {
public string Name;
public abstract dynamic Value {get; set;}
}
}