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

8 lines
156 B
C#
Raw Normal View History

2019-09-22 22:23:35 +00:00
using UnityEngine;
namespace BetterTee.Form {
2019-09-23 16:44:56 +00:00
public abstract class FormItem : FormElement {
2019-09-22 22:23:35 +00:00
public abstract dynamic Value {get; set;}
}
}