12 lines
179 B
C++
12 lines
179 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace Bloom::Widgets
|
||
|
|
{
|
||
|
|
struct PaneState
|
||
|
|
{
|
||
|
|
bool activated = false;
|
||
|
|
|
||
|
|
explicit PaneState(bool activated): activated(activated) {};
|
||
|
|
};
|
||
|
|
}
|