qtk/example-app/examplescene.h

42 lines
1.3 KiB
C
Raw Normal View History

2021-09-03 12:56:57 -04:00
/*##############################################################################
## Author: Shaun Reed ##
## Legal: All Content (c) 2023 Shaun Reed, all rights reserved ##
## About: Example Qtk scene ##
2021-09-03 12:56:57 -04:00
## ##
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ##
##############################################################################*/
#ifndef QTK_EXAMPLE_SCENE_H
#define QTK_EXAMPLE_SCENE_H
2021-09-03 12:56:57 -04:00
#include <qtk/scene.h>
2021-09-03 12:56:57 -04:00
2025-03-22 20:55:59 +00:00
class ExampleScene : public Qtk::Scene
{
public:
2025-03-22 20:55:59 +00:00
explicit ExampleScene();
2021-09-03 12:56:57 -04:00
~ExampleScene();
2021-09-03 12:56:57 -04:00
2025-03-22 20:55:59 +00:00
/**
* Override the initialization logic for the scene.
* This method should up the scene's objects, skybox, etc.
*/
void init() override;
2025-03-22 20:55:59 +00:00
/**
* Optionally override the draw method for the scene.
*
* This is just here for example, it should be omitted entirely if we don't
* want to provide a custom implementation for the ExampleScene.
*/
void draw() override;
2025-03-22 20:55:59 +00:00
/**
* Update objects in the scene for translation or rotation.
*/
void update() override;
};
#endif // QTK_EXAMPLE_SCENE_H