mirror of
https://github.com/AxioDL/zeus.git
synced 2025-06-17 12:03:32 +00:00
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
|
|
|