#pragma once #include class Console { public: /////////////////////////////////////////////////////////// /// \brief Calls every important process functions /// /////////////////////////////////////////////////////////// static void run(); private: static std::string input; /////////////////////////////////////////////////////////// /// \brief Waits for user input and writes it into a variable /// /////////////////////////////////////////////////////////// static void awaitInput(); /////////////////////////////////////////////////////////// /// \brief Takes input and manages it /// /////////////////////////////////////////////////////////// static void handleInput(); };