This commit is contained in:
Paul 2001-03-30 21:20:12 +00:00
parent b0a826890b
commit 273028cd82
2 changed files with 149 additions and 0 deletions

61
source/pickups/pnet.h Normal file
View file

@ -0,0 +1,61 @@
/*=========================================================================
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
-------------------- */
class CNetPickup : public CBasePickup
{
public:
virtual void collect(class CPlayer *_player);
protected:
virtual void renderPickup(DVECTOR *_pos);
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PICKUPS_PNET_H__ */
/*===========================================================================
end */