mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
14 lines
177 B
C++
14 lines
177 B
C++
#pragma once
|
|
|
|
namespace rage
|
|
{
|
|
template<typename T>
|
|
union vector3
|
|
{
|
|
T data[3];
|
|
struct { T x, y, z; };
|
|
};
|
|
|
|
typedef vector3<float> fvector3;
|
|
}
|