SilentPatch/SilentPatch/Common.h
Silent 858abbd342
III/VC: Apply the environment mapping on extra components
Also includes an INI exception list "ExtraCompSpecularityExceptions"
for cars with incorrectly set specular on extras,
like Stallion and Mesa Grande
2024-03-09 17:04:12 +01:00

18 lines
No EOL
375 B
C++

#pragma once
#include <cstdint>
namespace ExtraCompSpecularity
{
void ReadExtraCompSpecularityExceptions(const wchar_t* pPath);
bool SpecularityExcluded(int32_t modelID);
}
namespace Common
{
namespace Patches
{
void III_VC_DelayedCommon( bool hasDebugMenu, const wchar_t* iniPath );
void III_VC_Common();
void III_VC_SetDelayedPatchesFunc( void(*func)() );
}
};