mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 22:45:34 +00:00
20 lines
410 B
C++
20 lines
410 B
C++
|
#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
|