Casio_asm/common/keyboard.h

11 lines
154 B
C

#ifndef KEYBOARD_H
#define KEYBOARD_H
#include "platform.h"
#if defined(PC)
#include <SDL2/SDL.h>
int Keyboard_getCode(SDL_Keycode code);
#endif
#endif