mirror of
https://github.com/Ratstail91/Mementos.git
synced 2025-11-29 02:24:28 +11:00
11 lines
121 B
C#
11 lines
121 B
C#
|
|
namespace Ink.Runtime
|
|
{
|
|
public interface INamedContent
|
|
{
|
|
string name { get; }
|
|
bool hasValidName { get; }
|
|
}
|
|
}
|
|
|