|
|
@ -53,12 +53,16 @@
|
|
|
|
{"SetActorFatigueBase", ActorFunctions::SetActorFatigueBase},\
|
|
|
|
{"SetActorFatigueBase", ActorFunctions::SetActorFatigueBase},\
|
|
|
|
{"SetActorFatigueCurrent", ActorFunctions::SetActorFatigueCurrent},\
|
|
|
|
{"SetActorFatigueCurrent", ActorFunctions::SetActorFatigueCurrent},\
|
|
|
|
\
|
|
|
|
\
|
|
|
|
|
|
|
|
{"EquipActorItem", ActorFunctions::EquipActorItem},\
|
|
|
|
|
|
|
|
{"UnequipActorItem", ActorFunctions::UnequipActorItem},\
|
|
|
|
|
|
|
|
\
|
|
|
|
{"AddActor", ActorFunctions::AddActor},\
|
|
|
|
{"AddActor", ActorFunctions::AddActor},\
|
|
|
|
\
|
|
|
|
\
|
|
|
|
{"SendActorList", ActorFunctions::SendActorList},\
|
|
|
|
{"SendActorList", ActorFunctions::SendActorList},\
|
|
|
|
{"SendActorAuthority", ActorFunctions::SendActorAuthority},\
|
|
|
|
{"SendActorAuthority", ActorFunctions::SendActorAuthority},\
|
|
|
|
{"SendActorPosition", ActorFunctions::SendActorPosition},\
|
|
|
|
{"SendActorPosition", ActorFunctions::SendActorPosition},\
|
|
|
|
{"SendActorStatsDynamic", ActorFunctions::SendActorStatsDynamic},\
|
|
|
|
{"SendActorStatsDynamic", ActorFunctions::SendActorStatsDynamic},\
|
|
|
|
|
|
|
|
{"SendActorEquipment", ActorFunctions::SendActorEquipment},\
|
|
|
|
{"SendActorCellChange", ActorFunctions::SendActorCellChange}
|
|
|
|
{"SendActorCellChange", ActorFunctions::SendActorCellChange}
|
|
|
|
|
|
|
|
|
|
|
|
class ActorFunctions
|
|
|
|
class ActorFunctions
|
|
|
@ -116,12 +120,16 @@ public:
|
|
|
|
static void SetActorFatigueBase(double value) noexcept;
|
|
|
|
static void SetActorFatigueBase(double value) noexcept;
|
|
|
|
static void SetActorFatigueCurrent(double value) noexcept;
|
|
|
|
static void SetActorFatigueCurrent(double value) noexcept;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void EquipActorItem(unsigned short slot, const char* refId, unsigned int count, int charge) noexcept;
|
|
|
|
|
|
|
|
static void UnequipActorItem(unsigned short slot) noexcept;
|
|
|
|
|
|
|
|
|
|
|
|
static void AddActor() noexcept;
|
|
|
|
static void AddActor() noexcept;
|
|
|
|
|
|
|
|
|
|
|
|
static void SendActorList() noexcept;
|
|
|
|
static void SendActorList() noexcept;
|
|
|
|
static void SendActorAuthority() noexcept;
|
|
|
|
static void SendActorAuthority() noexcept;
|
|
|
|
static void SendActorPosition() noexcept;
|
|
|
|
static void SendActorPosition() noexcept;
|
|
|
|
static void SendActorStatsDynamic() noexcept;
|
|
|
|
static void SendActorStatsDynamic() noexcept;
|
|
|
|
|
|
|
|
static void SendActorEquipment() noexcept;
|
|
|
|
static void SendActorCellChange() noexcept;
|
|
|
|
static void SendActorCellChange() noexcept;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|