mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-01 15:26:59 +00:00
28 lines
496 B
C
28 lines
496 B
C
#pragma once
|
|
|
|
#include "Environment.h"
|
|
|
|
// ======================= UNIX ========================
|
|
|
|
#ifdef BEAMMP_LINUX
|
|
#include <errno.h>
|
|
#include <termios.h>
|
|
#include <unistd.h>
|
|
char _getch();
|
|
#endif // unix
|
|
|
|
// ======================= APPLE ========================
|
|
|
|
#ifdef BEAMMP_APPLE
|
|
#include <errno.h>
|
|
#include <termios.h>
|
|
#include <unistd.h>
|
|
char _getch();
|
|
#endif // unix
|
|
|
|
// ======================= WINDOWS =======================
|
|
|
|
#ifdef BEAMMP_WINDOWS
|
|
#include <conio.h>
|
|
#endif // WIN32
|