Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Ink / InkLibs / InkCompiler / ParsedHierarchy / AuthorWarning.cs
@Rackday Rackday on 29 Oct 379 bytes Major Update
  1. namespace Ink.Parsed
  2. {
  3. public class AuthorWarning : Parsed.Object
  4. {
  5. public string warningMessage;
  6. public AuthorWarning(string message)
  7. {
  8. warningMessage = message;
  9. }
  10. public override Runtime.Object GenerateRuntimeObject ()
  11. {
  12. Warning (warningMessage);
  13. return null;
  14. }
  15. }
  16. }