mirror of
https://github.com/Ratstail91/Mementos.git
synced 2025-11-29 10:34:27 +11:00
Committed everything
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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 };
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user