20 lines
391 B
C++
20 lines
391 B
C++
#pragma once
|
|
#include <vector>
|
|
#include <string>
|
|
#include <glm/glm.hpp>
|
|
|
|
#include "Componenets/GameObject.h"
|
|
|
|
|
|
// SceneWindow class declaration
|
|
class SceneWindow {
|
|
public:
|
|
void Show();
|
|
std::shared_ptr<GameObject> GetSelectedObject() const;
|
|
|
|
private:
|
|
void AddGameObject(); // Adds a new game object
|
|
void RemoveGameObject(int index); // Removes a game object by index
|
|
};
|
|
|