This commit is contained in:
parent
9d668cb68e
commit
4d00a63deb
14 changed files with 71 additions and 322 deletions
|
@ -375,4 +375,17 @@ void CNpcSmallJellyfishEnemy::fireAsProjectile( s16 heading )
|
|||
projectile->setGraphic( FRM_JELLYFISH1_SWIM1 );
|
||||
projectile->setHasRGB( true );
|
||||
projectile->setRGB( 255, 128, 255 );
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
CVECTOR CNpcSmallJellyfishEnemy::getRGB()
|
||||
{
|
||||
CVECTOR rgb;
|
||||
|
||||
rgb.r = 255;
|
||||
rgb.g = 128;
|
||||
rgb.b = 255;
|
||||
|
||||
return( rgb );
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue