Committed everything

This commit is contained in:
2021-06-30 21:39:19 +10:00
commit fcfa8e7213
525 changed files with 49440 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
namespace Ink.Runtime
{
/// <summary>
/// Exception that represents an error when running a Story at runtime.
/// An exception being thrown of this type is typically when there's
/// a bug in your ink, rather than in the ink engine itself!
/// </summary>
public class StoryException : System.Exception
{
public bool useEndLineNumber;
/// <summary>
/// Constructs a default instance of a StoryException without a message.
/// </summary>
public StoryException () { }
/// <summary>
/// Constructs an instance of a StoryException with a message.
/// </summary>
/// <param name="message">The error message.</param>
public StoryException(string message) : base(message) {}
}
}