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

12 lines
179 B
C++
Raw Normal View History

2022-02-06 20:28:46 +00:00
#pragma once
namespace Bloom::Widgets
{
struct PaneState
{
bool activated = false;
explicit PaneState(bool activated): activated(activated) {};
};
}