mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-05 14:10:27 -04:00
trying to debug, additional rewrites
This commit is contained in:
parent
378b5586ab
commit
42f780a729
87 changed files with 1771 additions and 529 deletions
28
platform/sdl/input.cpp
Normal file
28
platform/sdl/input.cpp
Normal file
|
@ -0,0 +1,28 @@
|
|||
#include "global_context.h"
|
||||
#include "input.h"
|
||||
|
||||
char get_control_key_state() {
|
||||
return 0; //todo
|
||||
}
|
||||
char get_shift_key_state() {
|
||||
return 0; //todo
|
||||
}
|
||||
uint32_t _bios_keybrd(int mode) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
void SetWheelMapping(char up, char down) { //todo
|
||||
|
||||
}
|
||||
|
||||
static MS_EVENT ms_event = {};
|
||||
|
||||
|
||||
|
||||
void get_ms_event(MS_EVENT *event) {
|
||||
*event = ms_event;
|
||||
}
|
||||
|
||||
void ShareCPU() {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue