This commit is contained in:
Paul 2001-03-23 19:44:14 +00:00
parent e52c7dcd1d
commit 13b2fbf0a8
13 changed files with 692 additions and 1439 deletions

62
source/player/pmfly.h Normal file
View file

@ -0,0 +1,62 @@
/*=========================================================================
pmfly.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLAYER_PMFLY_H__
#define __PLAYER_PMFLY_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __PLAYER_PMODES_H__
#include "player\pmodes.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CPlayerModeFly : public CPlayerModeBasic
{
public:
virtual void enter();
virtual void think();
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PLAYER_PMFLY_H__ */
/*===========================================================================
end */