the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 9 lines 192 B view raw
1#pragma once 2 3class ConsoleInputSource 4{ 5public: 6 virtual void info(const wstring& string) = 0; 7 virtual void warn(const wstring& string) = 0; 8 virtual wstring getConsoleName() = 0; 9};