mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:20:54 +01:00
27 lines
599 B
C
27 lines
599 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Games/ActorExtension.h>
|
||
|
|
#include <PlayerCharacter.h>
|
||
|
|
|
||
|
|
namespace GameplayFormulas
|
||
|
|
{
|
||
|
|
float CalculateRealDamage(Actor* apHittee, float aDamage, bool aKillMove) noexcept;
|
||
|
|
}
|
||
|
|
|
||
|
|
namespace Settings
|
||
|
|
{
|
||
|
|
int32_t* GetDifficulty() noexcept;
|
||
|
|
float* GetGreetDistance() noexcept;
|
||
|
|
float* GetVATSSelectTargetTimeMultiplier() noexcept;
|
||
|
|
} // namespace Settings
|
||
|
|
|
||
|
|
void FadeOutGame(bool aFadingOut, bool aBlackFade, float aFadeDuration, bool aRemainVisible, float aSecondsToFade) noexcept;
|
||
|
|
|
||
|
|
struct ExActor : Actor, ActorExtension
|
||
|
|
{
|
||
|
|
};
|
||
|
|
|
||
|
|
struct ExPlayerCharacter : PlayerCharacter, ActorExtension
|
||
|
|
{
|
||
|
|
};
|