[nostalgia/core] Add input.hpp to core.hpp

This commit is contained in:
Gary Talent 2021-03-31 02:21:50 -05:00
parent 134f5593e2
commit 445db97d31
3 changed files with 2 additions and 4 deletions

View File

@ -12,6 +12,7 @@
#include "consts.hpp"
#include "gfx.hpp"
#include "input.hpp"
#include "media.hpp"
namespace nostalgia::core {

View File

@ -7,7 +7,6 @@
*/
#include <nostalgia/core/core.hpp>
#include <nostalgia/core/input.hpp>
using namespace nostalgia;

View File

@ -11,13 +11,11 @@
#include "app.hpp"
using namespace nostalgia;
int main(int argc, const char **argv) {
if (argc > 1) {
ox::trace::init();
auto path = argv[1];
auto fs = core::loadRomFs(path);
auto fs = nostalgia::core::loadRomFs(path);
auto err = run(fs);
oxAssert(err, "Something went wrong...");
delete fs;