raygint/include/raygint/keyboard.h

13 lines
219 B
C
Raw Permalink Normal View History

2021-03-08 15:16:46 +01:00
#pragma once
#ifdef GINT
#include <gint/keyboard.h>
#endif /* GINT */
#ifdef RAYLIB
2021-11-17 14:46:01 +01:00
#include <raylib.h>
2021-03-08 15:16:46 +01:00
#define keydown(x) IsKeyDown(x)
#define dclear(x) ClearBackground(x)
2021-11-16 23:18:35 +01:00
void clearevents(void);
2021-03-08 15:16:46 +01:00
#endif /* RAYLIB */