aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/archetype/archetype.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/archetype/archetype.h')
-rw-r--r--engines/glk/archetype/archetype.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/engines/glk/archetype/archetype.h b/engines/glk/archetype/archetype.h
index 8df78e58aa..a54fa172de 100644
--- a/engines/glk/archetype/archetype.h
+++ b/engines/glk/archetype/archetype.h
@@ -173,9 +173,15 @@ public:
void writeln(const String fmt, ...);
void writeln() { writeln(""); }
- void readln(String &s);
+ /**
+ * Read an input line typed by the player
+ */
+ String readLine();
- char ReadKey();
+ /**
+ * Read in a single key
+ */
+ char readKey();
};
extern Archetype *g_vm;