#include "cbt/scene.hpp" namespace cbt { auto scene::init() -> bool { return true; } auto scene::update(float) -> void {} auto scene::render(int, int) -> void {} auto scene::on_mouse_drag(double, double) -> void {} }