mirror of
https://github.com/Steffo99/better-tee.git
synced 2024-11-25 16:34:17 +00:00
9 lines
187 B
C#
9 lines
187 B
C#
using UnityEngine;
|
|
|
|
namespace BetterTee.Form {
|
|
public abstract class FormItem : MonoBehaviour {
|
|
public string Name;
|
|
|
|
public abstract dynamic Value {get; set;}
|
|
}
|
|
}
|