diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-11-18 12:03:59 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-11-18 12:03:59 +0000 |
| commit | dda8f6b33ee05acdf23883c91a0897a464b84061 (patch) | |
| tree | 7058eb2de2b55db067957f0a67bfcb1c43f5b93d /src/game/vmath.h | |
| parent | 7efefe27163548b7f61c516d6b650258a3c7d033 (diff) | |
| download | zcatch-dda8f6b33ee05acdf23883c91a0897a464b84061.tar.gz zcatch-dda8f6b33ee05acdf23883c91a0897a464b84061.zip | |
fixed skin selector and some other mindor stuff
Diffstat (limited to 'src/game/vmath.h')
| -rw-r--r-- | src/game/vmath.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/vmath.h b/src/game/vmath.h index d7b502b1..7eaed12f 100644 --- a/src/game/vmath.h +++ b/src/game/vmath.h @@ -70,9 +70,9 @@ template<typename T> class vector3_base { public: - union { T x,r; }; - union { T y,g; }; - union { T z,b; }; + union { T x,r,h; }; + union { T y,g,s; }; + union { T z,b,v,l; }; vector3_base() {} vector3_base(float nx, float ny, float nz) |