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

16 lines
325 B
C++

#ifndef OPENMW_MISCELLANEOUSAPI_HPP
#define OPENMW_MISCELLANEOUSAPI_HPP
#include "../Types.hpp"
#define MISCELLANEOUSAPI \
{"GetLastPlayerId", MiscellaneousFunctions::GetLastPlayerId}
class MiscellaneousFunctions
{
public:
static unsigned int GetLastPlayerId() noexcept;
};
#endif //OPENMW_MISCELLANEOUSAPI_HPP