Files
BloomPatched/src/Insight/UserInterfaces/InsightWindow/Widgets/PanelState.hpp

14 lines
221 B
C++
Raw Normal View History

2022-02-06 20:28:46 +00:00
#pragma once
namespace Widgets
2022-02-06 20:28:46 +00:00
{
struct PanelState
{
int size = 0;
bool open = false;
PanelState() = default;
PanelState(int size, bool open): size(size), open(open) {};
2022-02-06 20:28:46 +00:00
};
}