This commit is contained in:
Charles 2001-05-17 19:28:08 +00:00
parent 9d668cb68e
commit 4d00a63deb
14 changed files with 71 additions and 322 deletions

View file

@ -1696,3 +1696,15 @@ void CNpcEnemy::processCoralBlower( int _frames )
m_isBlowerOn = false;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
CVECTOR CNpcEnemy::getRGB()
{
CVECTOR rgb;
rgb.r = 0;
rgb.g = 0;
rgb.b = 0;
return( rgb );
}