SBSPSS/source/hazard/hinert.h
Charles 2af8ab222b
2001-05-31 15:42:02 +00:00

29 lines
535 B
C++

/*=========================================================================
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:
virtual void render();
protected:
virtual void collidedWith(CThing *_thisThing);
};
#endif