11 lines
206 B
C
11 lines
206 B
C
|
#pragma once
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
|
||
|
#include "InputManager.h"
|
||
|
|
||
|
class GLFWInputManager : public InputManager
|
||
|
{
|
||
|
public:
|
||
|
void key_callback(GLFWwindow* p_window, int key, int scancode, int action, int mods);
|
||
|
};
|