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

11 lines
127 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;
};
}