15 lines
184 B
C#
15 lines
184 B
C#
using System;
|
|
|
|
namespace DebuggingEssentials
|
|
{
|
|
[Serializable]
|
|
public class BaseInputField
|
|
{
|
|
public string text;
|
|
|
|
public virtual void TryParse(bool logError = true)
|
|
{
|
|
}
|
|
}
|
|
}
|