This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
FC-Chess/FC-Chess/_unused_and_old/tui.h
T
AdmiralEmser 9c0acb89b9 added: first text templates, first checks for piece movement,
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.
2022-10-09 17:13:41 +02:00

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();
};
}