Auto stash before checking out "origin/main"

This commit is contained in:
2026-07-29 12:54:51 +03:00
parent 34a5bf0ce1
commit 91090342bf
10 changed files with 294 additions and 242 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifdef OMATH_ENABLE_LUA
#include "lua_engines_detail.hpp"
#include <omath/engines/unity_engine/camera.hpp>
namespace omath::lua::detail
{
void register_unity_engine(sol::table& omath_table)
{
register_engine<omath::unity_engine::Camera, omath::unity_engine::PitchAngle,
omath::unity_engine::ViewAngles>(omath_table, "unity");
}
} // namespace omath::lua::detail
#endif