This commit is contained in:
Charles 2001-05-17 21:07:43 +00:00
parent d9d7005122
commit 42b33334a4
7 changed files with 26 additions and 43 deletions

View file

@ -28,6 +28,15 @@
#endif
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcSmallJellyfish2BackgroundEnemy::postInit()
{
CNpcEnemy::postInit();
m_RGB = 128 + ( 128 << 8 ) + ( 255 << 16 );
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcSmallJellyfish2BackgroundEnemy::render()
@ -141,19 +150,3 @@ void CNpcSmallJellyfish2BackgroundEnemy::collidedWith( CThing *_thisThing )
}
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
u32 CNpcSmallJellyfish2BackgroundEnemy::getRGB()
{
CVECTOR rgb;
rgb.r = 128;
rgb.g = 128;
rgb.b = 255;
u32 rgbVal;
rgbVal = rgb.r + ( rgb.g << 8 ) + ( rgb.b << 16 );
return( rgbVal );
}