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