mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-06 03:22:01 -04:00
20 lines
392 B
C++
20 lines
392 B
C++
#ifndef OPENMW_ACTORAPI_HPP
|
|
#define OPENMW_ACTORAPI_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_ACTORAPI_HPP
|