17 lines
163 B
C++
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
|