Files
GTASource/game/timecycle/CalcAmbientScaleAsync.h
expvintl 419f2e4752 init
2025-02-23 17:40:52 +08:00

21 lines
308 B
C++

#ifndef CALC_AMBIENT_SCALE_ASYNC_H_
#define CALC_AMBIENT_SCALE_ASYNC_H_
#include "system/dependency.h"
class CPed;
struct CalcAmbientScalePedData
{
CPed* m_pPed;
float m_incaredNess;
};
class CalcAmbientScaleAsync
{
public:
static bool RunFromDependency(const sysDependency& dependency);
};
#endif