This commit is contained in:
parent
0647067113
commit
0950669e38
2 changed files with 161 additions and 0 deletions
62
source/pickups/pglove.h
Normal file
62
source/pickups/pglove.h
Normal file
|
@ -0,0 +1,62 @@
|
|||
/*=========================================================================
|
||||
|
||||
pglove.h
|
||||
|
||||
Author: PKG
|
||||
Created:
|
||||
Project: Spongebob
|
||||
Purpose:
|
||||
|
||||
Copyright (c) 2001 Climax Development Ltd
|
||||
|
||||
===========================================================================*/
|
||||
|
||||
#ifndef __PICKUPS_PGLOVE_H__
|
||||
#define __PICKUPS_PGLOVE_H__
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Includes
|
||||
-------- */
|
||||
|
||||
#ifndef __PICKUPS_PICKUP_H__
|
||||
#include "pickups/pickup.h"
|
||||
#endif
|
||||
|
||||
|
||||
/* Std Lib
|
||||
------- */
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Tyepdefs && Defines
|
||||
------------------- */
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Structure defintions
|
||||
-------------------- */
|
||||
|
||||
class CGlovePickup : public CBaseWeaponSimplePickup
|
||||
{
|
||||
public:
|
||||
virtual void init();
|
||||
virtual void collect(class CPlayer *_player);
|
||||
|
||||
protected:
|
||||
virtual int getWeaponSpriteFrame();
|
||||
|
||||
};
|
||||
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Globals
|
||||
------- */
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Functions
|
||||
--------- */
|
||||
|
||||
/*---------------------------------------------------------------------- */
|
||||
|
||||
#endif /* __PICKUPS_PGLOVE_H__ */
|
||||
|
||||
/*===========================================================================
|
||||
end */
|
Loading…
Add table
Add a link
Reference in a new issue