SBSPSS/source/player/pscrouch.h

74 lines
1.5 KiB
C
Raw Normal View History

2001-05-14 18:32:45 +02:00
/*=========================================================================
pscrouch.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLAYER_PSCROUCH_H__
#define __PLAYER_PSCROUCH_H__
/*----------------------------------------------------------------------
Includes
-------- */
#include "player\pstates.h"
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CPlayerStateCrouchDown : public CPlayerState
{
public:
void enter(class CPlayerModeBase *_playerMode);
void think(class CPlayerModeBase *_playerMode);
};
class CPlayerStateCrouchUp : public CPlayerState
{
public:
void enter(class CPlayerModeBase *_playerMode);
void think(class CPlayerModeBase *_playerMode);
};
/*----------------------------------------------------------------------
Globals
------- */
extern CPlayerStateCrouchDown s_stateCrouchDown;
extern CPlayerStateCrouchUp s_stateCrouchUp;
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PLAYER_PSCROUCH_H__ */
/*===========================================================================
end */