This commit is contained in:
Charles 2001-05-31 15:42:02 +00:00
parent b2e9124ec0
commit 2af8ab222b
2 changed files with 75 additions and 0 deletions

29
source/hazard/hinert.h Normal file
View file

@ -0,0 +1,29 @@
/*=========================================================================
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