2017-05-16 09:07:55 +01:00
|
|
|
#pragma once
|
|
|
|
|
2021-01-14 14:39:18 +00:00
|
|
|
#include <memory>
|
2020-12-31 14:34:00 +00:00
|
|
|
|
2021-02-25 16:25:09 +00:00
|
|
|
namespace na2
|
|
|
|
{
|
2021-01-14 14:39:18 +00:00
|
|
|
|
2021-02-25 16:25:09 +00:00
|
|
|
class NFrame;
|
2017-06-10 20:17:53 +01:00
|
|
|
|
2021-02-25 16:25:09 +00:00
|
|
|
int ProcessKeyboard(const std::shared_ptr<NFrame> & frame);
|
|
|
|
void SetCtrlCHandler(const bool headless);
|
2020-12-19 15:02:04 +00:00
|
|
|
|
2021-02-25 16:25:09 +00:00
|
|
|
extern double g_relativeSpeed;
|
|
|
|
|
|
|
|
extern bool g_stop;
|
|
|
|
|
|
|
|
}
|