2008-03-24 16:43:51 +00:00

17 lines
163 B
C++

#ifndef _CORPSE_H
#define _CORPSE_H
#include "Object.h"
class Corpse : public WorldObject
{
public:
Corpse();
void Create(uint64);
private:
};
#endif