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