9c0acb89b9
Information: There is no tui.h since MSVC doesn't find the code in there... for some unexplainable reason... Check FC-Chess.h -> FCC::TUI for further information.
18 lines
313 B
C++
18 lines
313 B
C++
#pragma once
|
|
#include "FC-Chess.h"
|
|
|
|
namespace FCC
|
|
{
|
|
class TUI
|
|
{
|
|
public:
|
|
// constructor and destructor
|
|
TUI() = default;
|
|
virtual ~TUI() = default;
|
|
|
|
// funcs
|
|
void startup();
|
|
void mainLoop();
|
|
void testLoop();
|
|
};
|
|
} |