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,24 @@
|
||||
|
||||
namespace Ink.Parsed
|
||||
{
|
||||
public class Text : Parsed.Object
|
||||
{
|
||||
public string text { get; set; }
|
||||
|
||||
public Text (string str)
|
||||
{
|
||||
text = str;
|
||||
}
|
||||
|
||||
public override Runtime.Object GenerateRuntimeObject ()
|
||||
{
|
||||
return new Runtime.StringValue(this.text);
|
||||
}
|
||||
|
||||
public override string ToString ()
|
||||
{
|
||||
return this.text;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user