blob: 08e2592fc55a4bc5f400f546151a2c3608a5cb8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef VECTOR3_H
#define VECTOR3_H
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
|