diff options
Diffstat (limited to 'client.cpp')
-rw-r--r-- | client.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -76,4 +76,12 @@ struct Client { target++; } } + + void push() { + cursor.push(args.pop()); + } + + void pop() { + cursor.pop(); + } }; |