mirror of
https://github.com/zoriya/Gamacon.git
synced 2026-06-02 03:35:43 +00:00
27 lines
374 B
C
27 lines
374 B
C
/*
|
|
** EPITECH PROJECT, 2020
|
|
** My3D
|
|
** File description:
|
|
** keybindings
|
|
*/
|
|
|
|
#ifndef _KEYBINDINGS_H_
|
|
#define _KEYBINDINGS_H_
|
|
|
|
#include <SFML/Window/Keyboard.h>
|
|
|
|
typedef enum gc_keybindings
|
|
{
|
|
ESCAPE = sfKeyEscape,
|
|
SPACE = sfKeySpace,
|
|
KEY_E = sfKeyE
|
|
} gc_keybindings;
|
|
|
|
typedef enum gc_mousekeys
|
|
{
|
|
GC_LEFT,
|
|
GC_RIGHT
|
|
} gc_mousekeys;
|
|
|
|
#endif //_KEYBINDINGS_H_
|