This commit is contained in:
Paul 2001-02-21 14:54:40 +00:00
parent a9d6a74527
commit 49fba3d958
2 changed files with 137 additions and 0 deletions

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

@ -0,0 +1,61 @@
/*=========================================================================
pglasses.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PICKUPS_PGLASSES_H__
#define __PICKUPS_PGLASSES_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __PICKUPS_PICKUP_H__
#include "pickups/pickup.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CGlassesPickup : public CBasePickup
{
public:
virtual void render();
virtual void collect(class CPlayer *_player);
private:
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PICKUPS_PGLASSES_H__ */
/*===========================================================================
end */