-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGUIItem.cpp
More file actions
27 lines (22 loc) · 1.14 KB
/
GUIItem.cpp
File metadata and controls
27 lines (22 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
///
/// Langulus::Module::FTXUI
/// Copyright (c) 2023 Dimo Markov <team@langulus.com>
/// Part of the Langulus framework, see https://langulus.com
///
/// SPDX-License-Identifier: GPL-3.0-or-later
///
#include "GUIItem.hpp"
#include "GUI.hpp"
/// GUI item construction
/// @param producer - the system producer
/// @param descriptor - instructions for configuring the item
GUIItem::GUIItem(GUISystem* producer, const Many& descriptor)
: Resolvable {this}
, ProducedFrom {producer, descriptor} {
VERBOSE_GUI("Initializing...");
Couple(descriptor);
VERBOSE_GUI("Initialized");
}
/// React on environmental change
void GUIItem::Refresh() {
}