Merge branch 'develop' of github.com:Vulpovile/G3D-Fun into feature/physics_improvements_and_optimizations

This commit is contained in:
Vulpovile
2022-10-06 09:06:22 -07:00
3 changed files with 64 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ public:
void onSelect(Mouse mouse);
void onKeyDown(int key);
void onKeyUp(int key);
void roundDeg(float &degree);
private:
bool lctrlDown;
bool rctrlDown;
@@ -20,4 +21,5 @@ private:
int mouseDownStarty;
bool dragging;
bool mouseDown;
Vector3 draggingPartOffset;
};