This commit is contained in:
Daveo 2001-01-03 22:15:22 +00:00
parent c9050e5b51
commit e7647f69dc
3 changed files with 29 additions and 23 deletions

View file

@ -9,8 +9,16 @@
#pragma warning(disable:4201)
// there should be _NO_ constructor
// there is now :o)
struct Vector3
{
Vector3(){};
Vector3(real _x,real _y,real _z)
{
x=_x;
y=_y;
z=_z;
}
union
{
real m_Vec[3];