mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-01-03 06:01:27 +00:00
yoink
This commit is contained in:
parent
03d2590b3d
commit
61e11b1e0f
4 changed files with 20 additions and 0 deletions
6
src/dev/chat.c
Normal file
6
src/dev/chat.c
Normal 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
4
src/dev/chat.h
Normal file
|
@ -0,0 +1,4 @@
|
|||
#pragma once
|
||||
|
||||
bool exec_dev_chat_command(char* command);
|
||||
void dev_display_chat_commands(void);
|
6
src/dev/controller_keyboard_debug.c
Normal file
6
src/dev/controller_keyboard_debug.c
Normal 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) {}
|
4
src/dev/controller_keyboard_debug.h
Normal file
4
src/dev/controller_keyboard_debug.h
Normal 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);
|
Loading…
Reference in a new issue