This commit is contained in:
Paul 2001-05-29 20:42:16 +00:00
parent 85fecdb6f2
commit ba904bf512
8 changed files with 26 additions and 7 deletions

View file

@ -79,6 +79,10 @@
#include "pickups\pquest.h"
#endif
#ifndef __PICKUPS_PKELP_H__
#include "pickups\pkelp.h"
#endif
#include "game/game.h"
/* Std Lib
@ -488,6 +492,10 @@ CBasePickup *createPickup(const PICKUP_TYPE _type,const DVECTOR *_pos)
pickup=new ("JellylauncherPickup") CJellyLauncherPickup();
break;
case PICKUP__KELP_TOKEN:
pickup=new ("KelpTokenPickup") CKelpTokenPickup();
break;
default:
ASSERT(!"UNKNOWN PICKUP TYPE");
return NULL;