SBSPSS/source/player/pmfly.h

63 lines
1.2 KiB
C
Raw Normal View History

2001-02-12 21:36:56 +01:00
/*=========================================================================
2001-03-23 20:44:14 +01:00
pmfly.h
2001-02-12 21:36:56 +01:00
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
2001-03-23 20:44:14 +01:00
#ifndef __PLAYER_PMFLY_H__
#define __PLAYER_PMFLY_H__
2001-02-12 21:36:56 +01:00
/*----------------------------------------------------------------------
Includes
-------- */
2001-03-23 20:44:14 +01:00
#ifndef __PLAYER_PMODES_H__
#include "player\pmodes.h"
#endif
2001-02-12 21:36:56 +01:00
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
2001-03-25 22:36:28 +02:00
class CPlayerModeFly : public CPlayerModeBase
2001-02-12 21:36:56 +01:00
{
public:
2001-03-23 20:44:14 +01:00
virtual void enter();
virtual void think();
2001-02-12 21:36:56 +01:00
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
2001-03-23 20:44:14 +01:00
#endif /* __PLAYER_PMFLY_H__ */
2001-02-12 21:36:56 +01:00
/*===========================================================================
end */