raygint/include/raygint/keyboard.h

13 lines
219 B
C

#pragma once
#ifdef GINT
#include <gint/keyboard.h>
#endif /* GINT */
#ifdef RAYLIB
#include <raylib.h>
#define keydown(x) IsKeyDown(x)
#define dclear(x) ClearBackground(x)
void clearevents(void);
#endif /* RAYLIB */