parent
d40fa774c1
commit
06a1c6c246
10 changed files with 60 additions and 46 deletions
@ -1,10 +0,0 @@ |
||||
#pragma once |
||||
|
||||
#define BK_STRINGIFY(x) #x |
||||
#define BIT_SHIFT(x) (1 << x) |
||||
|
||||
#define BK_BIND_EVENT_FN(fn) [this](Event& e) { fn(e); } |
||||
#define BK_BIND_DISPACHER_FN(event, fn) [this](event& e) -> bool{ return fn(e); } |
||||
|
||||
|
||||
|
@ -0,0 +1,5 @@ |
||||
#include <misc/cpp/imgui_stdlib.cpp> |
||||
|
||||
#define IMGUI_IMPL_OPENGL_LOADER_GLAD |
||||
#include <backends/imgui_impl_glfw.cpp> |
||||
#include <backends/imgui_impl_opengl3.cpp> |
@ -0,0 +1,12 @@ |
||||
#pragma once |
||||
|
||||
#include "bakarapch.h" |
||||
#include "io_codes.h" |
||||
|
||||
namespace Bk
|
||||
{ |
||||
class Input |
||||
{ |
||||
|
||||
}; |
||||
} |
Loading…
Reference in New Issue