summaryrefslogtreecommitdiff
path: root/Runtime/Math/Vector3.h
blob: c0a35f3e7c04456e7c7df0e436f4ee6f8db1415f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef VECTOR3_H
#define VECTOR3_H

namespace Internal
{

    struct Vector3
    {
        float x, y, z;

        inline void Set(float x, float y, float z)
        {
            this->x = x;
            this->y = y;
            this->z = z;
        }

    };


}
#endif