AppleWin/source/frontends/ncurses/world.h
Andrea Odetti 6066a52592 applen: add namespace and remove tabs.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2021-02-25 16:25:09 +00:00

17 lines
234 B
C++

#pragma once
#include <memory>
namespace na2
{
class NFrame;
int ProcessKeyboard(const std::shared_ptr<NFrame> & frame);
void SetCtrlCHandler(const bool headless);
extern double g_relativeSpeed;
extern bool g_stop;
}