mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
12 lines
149 B
C
12 lines
149 B
C
|
|
|
|
#if defined(_WIN32)
|
|
#include <conio.h> /* getche() */
|
|
|
|
#else
|
|
#include <termios.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
char getche();
|
|
#endif
|