SBSPSS/source/pickups/pnet.h

63 lines
1.3 KiB
C
Raw Normal View History

2001-03-30 23:20:12 +02:00
/*=========================================================================
pnet.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PICKUPS_PNET_H__
#define __PICKUPS_PNET_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __PICKUPS_PICKUP_H__
#include "pickups/pickup.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
2001-05-18 23:03:51 +02:00
class CNetPickup : public CBaseWeaponSimplePickup
2001-03-30 23:20:12 +02:00
{
public:
2001-04-20 18:57:05 +02:00
virtual void init();
2001-03-30 23:20:12 +02:00
virtual void collect(class CPlayer *_player);
protected:
2001-05-18 23:03:51 +02:00
virtual int getWeaponSpriteFrame();
2001-03-30 23:20:12 +02:00
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PICKUPS_PNET_H__ */
/*===========================================================================
end */