Unravel Engine C++ Reference
Loading...
Searching...
No Matches
axis.hpp
Go to the documentation of this file.
1#ifndef GENERATOR_AXIS_HPP
2#define GENERATOR_AXIS_HPP
3
4namespace generator
5{
6
7enum class axis_t
8{
9 X = 0,
10 Y = 1,
11 Z = 2
12};
13} // namespace generator
14
15#endif