yoink
This commit is contained in:
parent
a4e2b74b65
commit
9e24a4bb28
|
@ -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) { }
|
|
@ -0,0 +1,4 @@
|
|||
#pragma once
|
||||
|
||||
bool exec_dev_chat_command(char* command);
|
||||
void dev_display_chat_commands(void);
|
|
@ -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) {}
|
|
@ -0,0 +1,4 @@
|
|||
#pragma once
|
||||
|
||||
void debug_keyboard_on_key_down(UNUSED int scancode);
|
||||
void debug_keyboard_on_key_up(UNUSED int scancode);
|
Loading…
Reference in New Issue