#pragma once struct Vector3 { public: Vector3(float x, float y, float z) : x(x), y(y), z(z) {}; float x, y, z; };