This commit is contained in:
parent
850fe68e8e
commit
20932475a1
2 changed files with 236 additions and 0 deletions
74
source/player/pmbubble.h
Normal file
74
source/player/pmbubble.h
Normal file
|
@ -0,0 +1,74 @@
|
|||
/*=========================================================================
|
||||
|
||||
pmbubble.h
|
||||
|
||||
Author: PKG
|
||||
Created:
|
||||
Project: Spongebob
|
||||
Purpose:
|
||||
|
||||
Copyright (c) 2001 Climax Development Ltd
|
||||
|
||||
===========================================================================*/
|
||||
|
||||
#ifndef __PLAYER_PMBUBBLE_H__
|
||||
#define __PLAYER_PMBUBBLE_H__
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Includes
|
||||
-------- */
|
||||
|
||||
#ifndef __PLAYER_PMODES_H__
|
||||
#include "player\pmodes.h"
|
||||
#endif
|
||||
|
||||
|
||||
/* Std Lib
|
||||
------- */
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Tyepdefs && Defines
|
||||
------------------- */
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Structure defintions
|
||||
-------------------- */
|
||||
|
||||
class CPlayerModeBubbleMixture : public CPlayerModeBase
|
||||
{
|
||||
public:
|
||||
virtual void enter();
|
||||
virtual void think();
|
||||
|
||||
virtual void setAnimNo(int _animNo);
|
||||
virtual void setAnimFrame(int _animFrame);
|
||||
|
||||
virtual int isInAttackState();
|
||||
|
||||
private:
|
||||
int canAttackFromThisState();
|
||||
|
||||
int m_savedAnimNo,m_savedAnimFrame;
|
||||
int m_chopFrame;
|
||||
int m_chopping;
|
||||
|
||||
};
|
||||
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Globals
|
||||
------- */
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Functions
|
||||
--------- */
|
||||
|
||||
/*---------------------------------------------------------------------- */
|
||||
|
||||
#endif /* __PLAYER_PMBUBBLE_H__ */
|
||||
|
||||
/*===========================================================================
|
||||
end */
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue