openmw-tes3coop/apps/openmw-mp/Script/Functions/Death.hpp

16 lines
290 B
C++
Raw Normal View History

#ifndef OPENMW_DEATHAPI_HPP
#define OPENMW_DEATHAPI_HPP
#include "../Types.hpp"
#define DEATHAPI \
{"Resurrect", DeathFunctions::Resurrect}
class DeathFunctions
{
public:
2017-06-27 07:16:23 +00:00
static void Resurrect(unsigned short pid, unsigned int type) noexcept;
};
#endif //OPENMW_DEATHAPI_HPP