1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-19 01:09:39 +00:00
openmw-tes3mp/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