mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-15 04:54:08 +00:00
script 400-499 start
This commit is contained in:
parent
a34870645a
commit
c78fff8d54
6 changed files with 421 additions and 10 deletions
|
@ -33,3 +33,15 @@ void CWeather::ReleaseWeather()
|
|||
{
|
||||
ForcedWeatherType = -1;
|
||||
}
|
||||
|
||||
void CWeather::ForceWeather(int16 weather)
|
||||
{
|
||||
ForcedWeatherType = weather;
|
||||
}
|
||||
|
||||
void CWeather::ForceWeatherNow(int16 weather)
|
||||
{
|
||||
OldWeatherType = weather;
|
||||
NewWeatherType = weather;
|
||||
ForcedWeatherType = weather;
|
||||
}
|
||||
|
|
|
@ -36,4 +36,6 @@ public:
|
|||
static void RenderRainStreaks(void);
|
||||
|
||||
static void ReleaseWeather();
|
||||
static void ForceWeather(int16);
|
||||
static void ForceWeatherNow(int16);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue