Files
cuber/cbt/scene.cpp
T
portersky e71c4d55cf refactor: split into static libraries and restructure scenes
- Create cbt_opengl static library for OpenGL abstraction
- Create cbt_scene static library for base scene class
- Create scenes_cube static library for cube scene
- Move scene base to cbt/ (utility), scenes to root scenes/
- Link libraries in dependency chain: cuber -> scenes -> cbt_scene -> cbt_opengl
2026-05-05 22:27:19 +02:00

14 lines
165 B
C++

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