SBSPSS/source/player/pmbloon.h

68 lines
1.4 KiB
C
Raw Normal View History

2001-03-23 22:15:46 +01:00
/*=========================================================================
pmbloon.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLAYER_PMBLOON_H__
#define __PLAYER_PMBLOON_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __PLAYER_PMODES_H__
#include "player\pmodes.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
2001-03-25 22:36:28 +02:00
class CPlayerModeBalloon : public CPlayerModeBase
2001-03-23 22:15:46 +01:00
{
2001-03-25 22:36:28 +02:00
public:
2001-03-25 23:33:20 +02:00
virtual void think();
2001-04-05 18:26:17 +02:00
virtual void render(DVECTOR *_pos);
2001-03-25 23:33:20 +02:00
2001-03-25 22:36:28 +02:00
virtual int canFallForever() {return true;}
virtual const struct PlayerMetrics *getPlayerMetrics();
2001-04-09 22:08:56 +02:00
virtual void setAnimNo(int _animNo);
2001-03-23 22:15:46 +01:00
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PLAYER_PMBLOON_H__ */
/*===========================================================================
end */