This commit is contained in:
MysterD 2023-04-30 18:05:35 -07:00
parent a4e2b74b65
commit 9e24a4bb28
4 changed files with 20 additions and 0 deletions

6
src/dev/chat.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdbool.h>
#include "macros.h"
#include "chat.h"
bool exec_dev_chat_command(UNUSED char* command) { return false; }
void dev_display_chat_commands(void) { }

4
src/dev/chat.h Normal file
View File

@ -0,0 +1,4 @@
#pragma once
bool exec_dev_chat_command(char* command);
void dev_display_chat_commands(void);

View File

@ -0,0 +1,6 @@
#include <stdbool.h>
#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) {}

View File

@ -0,0 +1,4 @@
#pragma once
void debug_keyboard_on_key_down(UNUSED int scancode);
void debug_keyboard_on_key_up(UNUSED int scancode);