21 lines
No EOL
351 B
C
21 lines
No EOL
351 B
C
#ifndef ARC_GLFW_KEYBOARD_H_
|
|
#define ARC_GLFW_KEYBOARD_H_
|
|
|
|
#ifdef ARC_GLFW
|
|
#include <GLFW/glfw3.h>
|
|
#include "arc/input/keyboard.h"
|
|
|
|
struct ARC_Keyboard {
|
|
GLFWwindow *window;
|
|
|
|
ARC_KeyboardState *keys;
|
|
ARC_KeyboardState *released;
|
|
};
|
|
|
|
struct ARC_KeyboardInfo {
|
|
GLFWwindow *window;
|
|
};
|
|
|
|
#endif // !ARC_GLFW
|
|
|
|
#endif // !ARC_GLFW_KEYBOARD_H_
|