#include "tools.h"
#include "../tools/file_picker.h"
#include "../tools/virtual_keyboard.h"
#include "../libraries/profiler.h"
namespace sk {
bool tools_init() {
profiler_zone();
virtualkeyboard_initialize();
return true;
}
void tools_step() {
profiler_zone();
file_picker_update();
virtualkeyboard_step();
}
void tools_shutdown() {
virtualkeyboard_shutdown();
file_picker_shutdown();
}
}