1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-29 22:45:34 +00:00
openmw-tes3mp/apps/openmw-mp/Script/Functions/Actors.hpp

20 lines
410 B
C++
Raw Normal View History

#ifndef OPENMW_ACTORFUNCTIONS_HPP
#define OPENMW_ACTORFUNCTIONS_HPP
#define ACTORAPI \
{"InitActorList", ActorFunctions::InitActorList},\
\
{"GetActorListSize", ActorFunctions::GetActorListSize}
class ActorFunctions
{
public:
static void InitActorList(unsigned short pid) noexcept;
static unsigned int GetActorListSize() noexcept;
};
#endif //OPENMW_ACTORFUNCTIONS_HPP