mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 02:20:53 +01:00
9 lines
279 B
C++
9 lines
279 B
C++
#include "ActorState.h"
|
|
|
|
bool ActorState::SetWeaponDrawn(bool aDraw) noexcept
|
|
{
|
|
TP_THIS_FUNCTION(TSetWeaponState, bool, ActorState, bool aDraw);
|
|
POINTER_SKYRIMSE(TSetWeaponState, setWeaponState, 38979);
|
|
|
|
return TiltedPhoques::ThisCall(setWeaponState, this, aDraw);
|
|
}
|