SBSPSS/source/jellfish/jellfish.h

39 lines
754 B
C
Raw Normal View History

2001-05-10 16:00:29 +02:00
/*=========================================================================
jellfish.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __JELLFISH_JELLFISH_H__
#define __JELLFISH_JELLFISH_H__
#ifndef _GLOBAL_HEADER_
#include "system\global.h"
#endif
#ifndef __LEVEL_LEVEL_H__
#include "level\level.h"
#endif
class CJellyfishGenerator
{
public:
static void init();
static void think( int _frames, CLevel *level );
static void decCounter();
2001-07-28 19:00:06 +02:00
static void start() {m_on=true;}
2001-05-10 16:00:29 +02:00
protected:
static u8 m_jellyfishCount;
static s32 m_timer;
2001-05-10 18:47:35 +02:00
static u8 m_on;
2001-05-10 23:30:17 +02:00
static u8 m_level;
2001-05-10 16:00:29 +02:00
};
#endif