default to webcam off

This commit is contained in:
2025-02-27 04:29:37 -06:00
parent b48363fc99
commit 8d6cc8ca58
3 changed files with 11 additions and 5 deletions

View File

@ -20,7 +20,13 @@ class HiddenField {
{
return dynamic_cast<T>(ptr);
}
template<typename T>
T* AllocField()
{
auto v = new T();
SetField(v);
return v;
}
~HiddenField();
};
}