Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Ink / InkLibs / InkCompiler / CommandLineInput.cs
@Rackday Rackday on 29 Oct 277 bytes Major Update
  1. namespace Ink
  2. {
  3. public class CommandLineInput
  4. {
  5. public bool isHelp;
  6. public bool isExit;
  7. public int? choiceInput;
  8. public int? debugSource;
  9. public string debugPathLookup;
  10. public object userImmediateModeStatement;
  11. }
  12. }