Shkyera Engine
Easy to use, game engine for Python
Loading...
Searching...
No Matches
GizmoHandleComponent.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <glm/glm.hpp>
4
7
8namespace shkyera {
9
10class GizmoHandleComponent : public BaseComponent<GizmoHandleComponent> {
11 public:
12 enum class Direction { X, Y, Z, ANY };
13
16
18};
19
20} // namespace shkyera
Base component for implementing update functionality.
Definition BaseComponent.hpp:17
Definition GizmoHandleComponent.hpp:10
GizmoHandleComponent(Direction dir)
Definition GizmoHandleComponent.hpp:15
Direction
Definition GizmoHandleComponent.hpp:12
Direction direction
Definition GizmoHandleComponent.hpp:17
Definition Asset.hpp:6
Definition Clock.hpp:9