Files
BloomPatched/src/Insight/UserInterfaces/InsightWindow/Widgets/PaneState.hpp
2022-02-06 20:28:46 +00:00

12 lines
179 B
C++

#pragma once
namespace Bloom::Widgets
{
struct PaneState
{
bool activated = false;
explicit PaneState(bool activated): activated(activated) {};
};
}