Files
flatbuffers/tests/vector3d.h
2019-07-16 18:20:21 +03:00

17 lines
272 B
C++

#ifndef VECTOR3D_H
#define VECTOR3D_H
namespace Native {
struct Vector3D {
public:
double x;
double y;
double z;
Vector3D() = default;
Vector3D(double x, double y, double z) { this->x = x; this->y = y; this->z = z; }
};
}
#endif // VECTOR3D_H