sculpto
scene_config_window.h
Go to the documentation of this file.
1/*!****************************************************************//*!*
2 * \file scene_config_window.h
3 * \brief Scene configuration GUI window class definition module.
4 *
5 * \author Sabitov Kirill
6 * \date 09 July 2022
7 *********************************************************************/
8
9#pragma once
10
11#include "core/scene/scene.h"
12
13namespace scl
14{
17 {
18 private:
19 scene *Scene {};
20
21 public:
22 /*!*
23 * Scene hierarchy window default constructor.
24 *
25 * \param Scene - scene to display hierarchy tree of.
26 * \param SelectedSceneObject - pointer to variable to set selecting itmes in.
27 */
29
30 /*!*
31 * Draw scene hierarchy window function.
32 *
33 * \param None.
34 * \return None.
35 */
36 void Draw();
37 };
38}
39
Definition: base.h:33
Scene class defintion module.