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

14 lines
228 B
C++
Raw Normal View History

2022-02-06 20:28:46 +00:00
#pragma once
namespace Bloom::Widgets
{
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
};
}