mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-09 20:08:57 +03:00
34 lines
435 B
C++
34 lines
435 B
C++
#pragma once
|
|
|
|
class SelectableElement
|
|
{
|
|
virtual void Draw();
|
|
};
|
|
|
|
class SceneFile : public SelectableElement
|
|
{
|
|
void Draw() override;
|
|
};
|
|
|
|
class ProjectFile : public SelectableElement
|
|
{
|
|
void Draw() override;
|
|
};
|
|
|
|
class MaterialFile : public SelectableElement
|
|
{
|
|
void Draw() override;
|
|
};
|
|
|
|
class Entity : public SelectableElement
|
|
{
|
|
void Draw() override;
|
|
};
|
|
|
|
class PropretiesWindow
|
|
{
|
|
SelectableElement selected;
|
|
|
|
static void Draw();
|
|
};
|