#ifndef options_H
#define options_H

/* Allow the saving of V6 games */
#define ALLOW_V6

/* Allow smart quotes etc */
#define ALLOW_QUOTES
#define NEW_QUOTING

/* Allow command recall */
#define ALLOW_RECALL

/* Allow line editing */
#define ALLOW_EDITING

/* Allow font selection */
#define ALLOW_FONTS

/* Allow extras such as interpreter selection */
#define ALLOW_EXTRAS

/* Allow old saved game files */
//#define ALLOW_OLD_SAVES

/* Speech */
//#define ALLOW_SPEECH

/* Infix debugging support */
//#define INFIX

/* Opcode counter */
//#define ALLOW_OPCOUNT

/* Tracing */
//#define TRACING

/* Registered version */
//#define SINGLE_USER

/* RISC User edition */
//#define RISC_USER

//#ifdef RISC_USER
//#undef ALLOW_QUOTES
//#undef ALLOW_EXTRAS
//#undef INFIX
//#undef SINGLE_USER
//#endif
//
//#if !defined(SINGLE_USER) && !defined(RISC_USER)
//#undef ALLOW_V6
//#undef ALLOW_QUOTES
//#undef ALLOW_RECALL
//#undef ALLOW_EDITING
//#undef ALLOW_FONTS
//#undef ALLOW_EXTRAS
//#endif

#endif
