mirror of
https://github.com/Ratstail91/Mementos.git
synced 2025-11-29 02:24:28 +11:00
21 lines
379 B
C#
21 lines
379 B
C#
|
|
namespace Ink.Parsed
|
|
{
|
|
public class AuthorWarning : Parsed.Object
|
|
{
|
|
public string warningMessage;
|
|
|
|
public AuthorWarning(string message)
|
|
{
|
|
warningMessage = message;
|
|
}
|
|
|
|
public override Runtime.Object GenerateRuntimeObject ()
|
|
{
|
|
Warning (warningMessage);
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
|