SBSPSS/source/hazard/hinert.h

29 lines
523 B
C
Raw Normal View History

2001-05-31 17:42:02 +02:00
/*=========================================================================
hinert.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __HAZARD_HINERT_H__
#define __HAZARD_HINERT_H__
#ifndef __HAZARD_HAZARD_H__
#include "hazard\hazard.h"
#endif
class CNpcInertHazard : public CNpcHazard
{
public:
2001-07-04 16:26:36 +02:00
void render();
2001-05-31 17:42:02 +02:00
protected:
2001-07-04 16:26:36 +02:00
void collidedWith(CThing *_thisThing);
2001-05-31 17:42:02 +02:00
};
#endif