#pragma once namespace Gedeng { class Vector3 { public: Vector3(float x, float y, float z) : x(x), y(y), z(z) { } float x; float y; float z; }; } // namespace Gedeng