mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2025-01-04 10:13:02 +05:00
858abbd342
Also includes an INI exception list "ExtraCompSpecularityExceptions" for cars with incorrectly set specular on extras, like Stallion and Mesa Grande
18 lines
No EOL
375 B
C++
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)() );
|
|
}
|
|
}; |