SBSPSS/source/player/psrun.h

63 lines
1.3 KiB
C
Raw Normal View History

2001-01-19 23:54:48 +01:00
/*=========================================================================
psjump.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLAYER_PSRUN_H__
#define __PLAYER_PSRUN_H__
/*----------------------------------------------------------------------
Includes
-------- */
#include "player\pstates.h"
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CPlayerStateRun : public CPlayerState
{
public:
void enter(class CPlayer *_player);
void think(class CPlayer *_player);
2001-01-25 16:25:46 +01:00
private:
int m_numberOfTimeAnimHasLooped;
2001-01-19 23:54:48 +01:00
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PLAYER_PSRUN_H__ */
/*===========================================================================
end */