mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-16 02:05:53 +00:00
13 lines
279 B
C++
13 lines
279 B
C++
#include "specter/Control.hpp"
|
|
|
|
namespace specter
|
|
{
|
|
|
|
Control::Control(ViewResources& res, View& parentView,
|
|
IControlBinding* controlBinding)
|
|
: View(res, parentView), m_controlBinding(controlBinding) {}
|
|
|
|
std::recursive_mutex ITextInputView::m_textInputLk;
|
|
|
|
}
|