Files
BloomPatched/src/Insight/UserInterfaces/InsightWindow/Widgets/PanelState.hpp
2024-12-24 18:27:59 +00:00

17 lines
255 B
C++

#pragma once
namespace Widgets
{
struct PanelState
{
int size = 0;
bool open = false;
PanelState() = default;
PanelState(int size, bool open)
: size(size)
, open(open)
{};
};
}