SBSPSS/source/player/pmdead.h

72 lines
1.5 KiB
C
Raw Normal View History

2001-03-25 23:09:06 +02:00
/*=========================================================================
pmdead.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLAYER_PMDEAD_H__
#define __PLAYER_PMDEAD_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __PLAYER_PMODES_H__
#include "player\pmodes.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CPlayerModeDead : public CPlayerMode
{
2001-03-25 23:33:20 +02:00
public:
virtual void enter();
virtual void think();
2001-04-05 18:26:17 +02:00
// virtual void render(DVECTOR *_pos);
2001-03-25 23:33:20 +02:00
private:
// Player can press ACTION to respawn after death
enum
{
DEATH_DELAY=2*60, // Can't force a respawn for this long
DEATH_TIMEOUT=5*60, // SB respawns automatically after this long
};
int m_deadTime;
2001-03-25 23:09:06 +02:00
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PLAYER_PMDEAD_H__ */
/*===========================================================================
end */