
Added better Ans support Added Pi and e Improved decimal numbers Added help page, accesible via <help>
31 lines
742 B
C++
31 lines
742 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
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();
|
|
};
|
|
|