SBSPSS/source/player/pslook.h

74 lines
1.5 KiB
C
Raw Normal View History

2001-05-14 18:32:45 +02:00
/*=========================================================================
2001-05-29 17:53:50 +02:00
pslook.h
2001-05-14 18:32:45 +02:00
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
2001-05-29 17:53:50 +02:00
#ifndef __PLAYER_PSLOOK_H__
#define __PLAYER_PSLOOK_H__
2001-05-14 18:32:45 +02:00
/*----------------------------------------------------------------------
Includes
-------- */
#include "player\pstates.h"
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
2001-05-29 17:53:50 +02:00
class CPlayerStateLookDown : public CPlayerState
2001-05-14 18:32:45 +02:00
{
public:
void enter(class CPlayerModeBase *_playerMode);
void think(class CPlayerModeBase *_playerMode);
};
2001-05-29 17:53:50 +02:00
class CPlayerStateLookDownRelax : public CPlayerState
2001-05-14 18:32:45 +02:00
{
public:
void enter(class CPlayerModeBase *_playerMode);
void think(class CPlayerModeBase *_playerMode);
};
/*----------------------------------------------------------------------
Globals
------- */
2001-05-29 17:53:50 +02:00
extern CPlayerStateLookDown s_stateLookDown;
extern CPlayerStateLookDownRelax s_stateLookDownRelax;
2001-05-14 18:32:45 +02:00
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
2001-05-29 17:53:50 +02:00
#endif /* __PLAYER_PSLOOK_H__ */
2001-05-14 18:32:45 +02:00
/*===========================================================================
end */