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

class Vector3
{
public:
	float x, y, z;

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

};

#endif