FIXED inputsystem linker error
This commit is contained in:
@ -1,7 +1,11 @@
|
||||
#pragma once
|
||||
#include <vector>
|
||||
#include "Graphics/Window.h"
|
||||
#include <iostream>
|
||||
|
||||
#include "spdlog/spdlog.h"
|
||||
#include "EventSystem/EventEmitter.h"
|
||||
#include "EventSystem/EventListener.h"
|
||||
#include "Graphics/Window.h"
|
||||
|
||||
namespace BarinkEngine {
|
||||
|
||||
@ -12,8 +16,6 @@ namespace BarinkEngine {
|
||||
void PollEvents();
|
||||
void attach(BarinkWindow* window);
|
||||
|
||||
|
||||
|
||||
// GLFW Handlers
|
||||
static void KeyCallback(GLFWwindow* window, int key, int scancode, int action, int mods);
|
||||
static void CursorPositionCallback(GLFWwindow* window, double x, double y);
|
||||
@ -25,3 +27,5 @@ namespace BarinkEngine {
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
extern BarinkEngine::InputManager InputSystem;
|
Reference in New Issue
Block a user