15 lines
228 B
C++
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);
|
|
}
|