Files
2021-06-30 21:39:19 +10:00

11 lines
121 B
C#

namespace Ink.Runtime
{
public interface INamedContent
{
string name { get; }
bool hasValidName { get; }
}
}