mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-06 20:45: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;
|
|
|
|
}
|