stereokit-rust 0.4.0-alpha.22

High-Level Rust bindings around the StereoKitC library for XR
Documentation
#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();
}

}