Remove large resources from the application. #16

Merged
shaunrd0 merged 45 commits from cleanup into master 2025-03-22 20:56:04 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 1e1c328a5a - Show all commits

View File

@ -17,7 +17,7 @@ ExampleScene::ExampleScene(Qtk::Scene * scene) : Qtk::SceneInterface(scene) {
getCamera().getTransform().setRotation(-5.0f, 0.0f, 1.0f, 0.0f); getCamera().getTransform().setRotation(-5.0f, 0.0f, 1.0f, 0.0f);
} }
ExampleScene::~ExampleScene() {} ExampleScene::~ExampleScene() = default;
void ExampleScene::init() { void ExampleScene::init() {
auto skybox = new Qtk::Skybox("Skybox"); auto skybox = new Qtk::Skybox("Skybox");

View File

@ -13,7 +13,7 @@
class ExampleScene : public Qtk::SceneInterface { class ExampleScene : public Qtk::SceneInterface {
public: public:
ExampleScene(Qtk::Scene * scene); explicit ExampleScene(Qtk::Scene * scene);
~ExampleScene(); ~ExampleScene();