This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-05-06 23:05:36 -04:00
|
|
|
import 'terminal-kit' as terminalkit;
|
2021-05-09 19:42:03 -04:00
|
|
|
singleton;
|
2021-05-08 23:06:31 -04:00
|
|
|
|
|
|
|
|
link currentSave;
|
|
|
|
|
|
2021-05-12 00:15:53 -04:00
|
|
|
async restore {
|
2021-05-06 23:05:36 -04:00
|
|
|
terminalkit.terminal.cyan('~Welcome to Vogue~\n');
|
2021-05-09 19:42:03 -04:00
|
|
|
this.currentSave ??= create('world', {});
|
2021-05-12 00:15:53 -04:00
|
|
|
// console.log(Interface);
|
|
|
|
|
const choice = await Interface.choice('select a thing', ['a', 'b', 'c']);
|
2021-05-06 23:05:36 -04:00
|
|
|
}
|