Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/W/WeatherEntry.h
T
2026-05-30 18:33:24 +12:00

15 lines
228 B
C++

#pragma once
namespace RE
{
class WeatherEntry
{
public:
// members
TESWeather* weather; // 00
std::uint32_t chance; // 08
TESGlobal* chanceVar; // 10
};
static_assert(sizeof(WeatherEntry) == 0x18);
}