mirror of
https://github.com/Ratstail91/Mementos.git
synced 2025-11-29 02:24:28 +11:00
14 lines
326 B
C#
14 lines
326 B
C#
namespace Ink.Parsed {
|
|
public class Identifier {
|
|
public string name;
|
|
public Runtime.DebugMetadata debugMetadata;
|
|
|
|
public override string ToString()
|
|
{
|
|
return name;
|
|
}
|
|
|
|
public static Identifier Done = new Identifier { name = "DONE", debugMetadata = null };
|
|
}
|
|
}
|