34 lines
626 B
C++
34 lines
626 B
C++
/*
|
|
* Copyright 2016-2017 gtalent2@gmail.com
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#include "../gfx.hpp"
|
|
|
|
namespace nostalgia {
|
|
namespace core {
|
|
|
|
ox::Error initGfx(Context *ctx) {
|
|
return 1;
|
|
}
|
|
|
|
ox::Error initConsole(Context *ctx) {
|
|
return 1;
|
|
}
|
|
|
|
ox::Error loadTileSheet(Context *ctx, InodeId_t inode) {
|
|
return 1;
|
|
}
|
|
|
|
void puts(Context *ctx, int loc, const char *str) {
|
|
}
|
|
|
|
void setTile(Context *ctx, int layer, int column, int row, uint8_t tile) {
|
|
}
|
|
|
|
}
|
|
}
|