diff options
| author | Fuwn <[email protected]> | 2022-02-05 17:35:40 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-02-05 17:35:40 -0800 |
| commit | 99a412ddce5cfd72750c8e634f92cc9f5451f231 (patch) | |
| tree | 17dc17bff84a491162eb51a18c094fda745e9bb1 /include | |
| parent | chore: update version and tag (diff) | |
| download | soyuz-99a412ddce5cfd72750c8e634f92cc9f5451f231.tar.xz soyuz-99a412ddce5cfd72750c8e634f92cc9f5451f231.zip | |
feat(soyuz): countdown when unable to locate lunar
Diffstat (limited to 'include')
| -rw-r--r-- | include/soyuz/library.hh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/soyuz/library.hh b/include/soyuz/library.hh index c63f976..27feeae 100644 --- a/include/soyuz/library.hh +++ b/include/soyuz/library.hh @@ -25,6 +25,14 @@ namespace soyuz { // high, // red // }; +const std::string numbers_as_string[] = { + "zero", + "one", + "two", + "three", + "four", +}; + static BOOL CALLBACK enum_windows_proc(HWND, LPARAM); auto find_lunar() -> DWORD; auto delete_handle(DWORD) -> int; |