This commit is contained in:
parent
5b944146d8
commit
337d6965ba
12 changed files with 133 additions and 24 deletions
|
@ -67,6 +67,10 @@
|
|||
#include "pickups\phelmet.h"
|
||||
#endif
|
||||
|
||||
#ifndef __PICKUPS_PNET_H__
|
||||
#include "pickups\pnet.h"
|
||||
#endif
|
||||
|
||||
#ifndef __PICKUPS_PQUEST_H__
|
||||
#include "pickups\pquest.h"
|
||||
#endif
|
||||
|
@ -311,6 +315,14 @@ CBasePickup *createPickup(const PICKUP_TYPE _type,const DVECTOR *_pos)
|
|||
pickup=new ("BubbleAmmoPickup") CBubbleMixturePickup();
|
||||
break;
|
||||
|
||||
case PICKUP__BUBBLE_WAND:
|
||||
pickup=new ("BubbleWandPickup") CBubbleWandPickup();
|
||||
break;
|
||||
|
||||
case PICKUP__NET:
|
||||
pickup=new ("NetPickup") CNetPickup();
|
||||
break;
|
||||
|
||||
case PICKUP__GLASSES:
|
||||
pickup=new ("GlassesPickup") CGlassesPickup();
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue