13 lines
238 B
C++
13 lines
238 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "ic4\ic.h" //Improved Console
|
|
|
|
namespace YConsole
|
|
{
|
|
int WaitForInput();
|
|
void WriteLine(std::string text);
|
|
void NewLine();
|
|
void ReadLine(std::string *input);
|
|
void SetTitle(std::string title);
|
|
} |