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

16 lines
271 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:
static void Resurrect(unsigned short pid) noexcept;
};
#endif //OPENMW_DEATHAPI_HPP