mirror of https://github.com/AxioDL/zeus.git
14 lines
155 B
C++
14 lines
155 B
C++
|
#ifndef TVECTORUNION
|
||
|
#define TVECTORUNION
|
||
|
|
||
|
typedef union
|
||
|
{
|
||
|
float v[4];
|
||
|
#if __SSE__
|
||
|
__m128 mVec128;
|
||
|
#endif
|
||
|
} TVectorUnion;
|
||
|
|
||
|
#endif // TVECTORUNION
|
||
|
|