F4MP/tiltedcode/Code/client/Games/Skyrim/Sky/Sky.h
Jous99 37b16f1547 code upload
codigo original de f4mp y tilted para referencias
2026-01-06 18:45:00 +01:00

27 lines
552 B
C

#pragma once
struct TESWeather;
struct Sky
{
static Sky* Get() noexcept;
static bool s_shouldUpdateWeather;
virtual ~Sky();
void SetWeather(TESWeather* apWeather) noexcept;
void ForceWeather(TESWeather* apWeather) noexcept;
void ReleaseWeatherOverride() noexcept;
void ResetWeather() noexcept;
TESWeather* GetWeather() const noexcept;
uint8_t unk8[0x48 - 0x8];
TESWeather* pCurrentWeather;
uint8_t unk50[0x2C8 - 0x50];
};
bool Sky::s_shouldUpdateWeather = true;
static_assert(sizeof(Sky) == 0x2C8);