From 61e11b1e0f7771e8ff31ea944a1abf2de3c41392 Mon Sep 17 00:00:00 2001 From: MysterD Date: Sun, 30 Apr 2023 18:05:35 -0700 Subject: [PATCH] yoink --- src/dev/chat.c | 6 ++++++ src/dev/chat.h | 4 ++++ src/dev/controller_keyboard_debug.c | 6 ++++++ src/dev/controller_keyboard_debug.h | 4 ++++ 4 files changed, 20 insertions(+) create mode 100644 src/dev/chat.c create mode 100644 src/dev/chat.h create mode 100644 src/dev/controller_keyboard_debug.c create mode 100644 src/dev/controller_keyboard_debug.h diff --git a/src/dev/chat.c b/src/dev/chat.c new file mode 100644 index 000000000..c156f82ac --- /dev/null +++ b/src/dev/chat.c @@ -0,0 +1,6 @@ +#include +#include "macros.h" +#include "chat.h" + +bool exec_dev_chat_command(UNUSED char* command) { return false; } +void dev_display_chat_commands(void) { } diff --git a/src/dev/chat.h b/src/dev/chat.h new file mode 100644 index 000000000..fb27d7c09 --- /dev/null +++ b/src/dev/chat.h @@ -0,0 +1,4 @@ +#pragma once + +bool exec_dev_chat_command(char* command); +void dev_display_chat_commands(void); diff --git a/src/dev/controller_keyboard_debug.c b/src/dev/controller_keyboard_debug.c new file mode 100644 index 000000000..24948f3c4 --- /dev/null +++ b/src/dev/controller_keyboard_debug.c @@ -0,0 +1,6 @@ +#include +#include "macros.h" +#include "controller_keyboard_debug.h" + +void debug_keyboard_on_key_down(UNUSED int scancode) {} +void debug_keyboard_on_key_up(UNUSED int scancode) {} diff --git a/src/dev/controller_keyboard_debug.h b/src/dev/controller_keyboard_debug.h new file mode 100644 index 000000000..99dc3d9e6 --- /dev/null +++ b/src/dev/controller_keyboard_debug.h @@ -0,0 +1,4 @@ +#pragma once + +void debug_keyboard_on_key_down(UNUSED int scancode); +void debug_keyboard_on_key_up(UNUSED int scancode);