16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 05:49:19 +02:00

add missing files

This commit is contained in:
milek7
2019-07-31 17:22:13 +02:00
parent f10e15f408
commit ee65ca77e3
12 changed files with 928 additions and 0 deletions

21
launcher/keymapper.h Normal file
View File

@@ -0,0 +1,21 @@
#pragma once
#include "uilayer.h"
#include "driverkeyboardinput.h"
namespace ui
{
class keymapper_panel : public ui_panel
{
public:
keymapper_panel();
void render() override;
bool key(int key);
private:
driverkeyboard_input keyboard;
user_command bind_active = user_command::none;
};
} // namespace ui