raygint/include/raygint/keyboard.h

14 lines
263 B
C

#pragma once
#ifdef GINT
#include <gint/keyboard.h>
#endif /* GINT */
#ifdef RAYLIB
/* Simple functions. */
#define keydown(x) IsKeyDown(x)
#define dclear(x) ClearBackground(x)
/* Useless functions, do nothing. */
void clearevents(void) {};
#endif /* RAYLIB */