[nostalgia/core/gba] Add user input support

This commit is contained in:
2020-07-18 01:19:07 -05:00
parent 72883285f2
commit e8151ac037
5 changed files with 45 additions and 0 deletions
+5
View File
@@ -9,6 +9,7 @@
#include <SDL.h>
#include <nostalgia/core/gfx.hpp>
#include <nostalgia/core/input.hpp>
#include <nostalgia/core/core.hpp>
namespace nostalgia::core {
@@ -52,4 +53,8 @@ uint64_t ticksMs() {
return SDL_GetTicks();;
}
bool buttonDown(Key) {
return false;
}
}