2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-16 02:05:53 +00:00
metaforce/specter/lib/Control.cpp
2016-03-04 13:03:47 -10:00

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;
}