You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
296 B
C++
18 lines
296 B
C++
#include "epilogues.h"
|
|
|
|
#include "../debug/output.h"
|
|
#include "guard.h"
|
|
|
|
extern Key kout_key;
|
|
|
|
namespace Epilogues {
|
|
|
|
void keyboard(Vault& g) {
|
|
g.kout << kout_key.ascii() << endl << flush ;
|
|
}
|
|
|
|
void timer(Vault& g) { (void)g; }
|
|
|
|
void assassin(Vault& g) { (void)g; }
|
|
}; // namespace Epilogues
|