openmw-tes3coop/apps/openmw-mp/Script/Functions/Death.hpp
2017-06-27 15:16:23 +08:00

15 lines
290 B
C++

#ifndef OPENMW_DEATHAPI_HPP
#define OPENMW_DEATHAPI_HPP
#include "../Types.hpp"
#define DEATHAPI \
{"Resurrect", DeathFunctions::Resurrect}
class DeathFunctions
{
public:
static void Resurrect(unsigned short pid, unsigned int type) noexcept;
};
#endif //OPENMW_DEATHAPI_HPP