summary refs log tree commit diff
path: root/src/Math/Vector.hpp
blob: 9c7675821aa0f1d9382e621f2b67a1cd4c25ba5e (plain)
1
2
3
4
5
6
7
8
9
#pragma once

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

    float x, y, z;
};