open-story-teller/story-editor/src/windows/properties_window.h
anthony@rabine.fr 157c5a5a01 usage of submodules instead of git fetch
multiple fixes/file moves
2025-01-28 22:31:05 +01:00

23 lines
355 B
C++

#pragma once
#include "window_base.h"
#include "gui.h"
#include "base_node_widget.h"
class PropertiesWindow : public WindowBase
{
public:
PropertiesWindow();
void Initialize();
virtual void Draw() override;
void SetSelectedNode(std::shared_ptr<BaseNodeWidget> node);
private:
std::shared_ptr<BaseNodeWidget> m_selectedNode;
};