#pragma once #include "../../DNACommon/DNACommon.hpp" #include "IScriptObject.hpp" #include "Parameters.hpp" namespace DataSpec::DNAMP1 { struct AreaAttributes : IScriptObject { AT_DECL_DNA_YAML AT_DECL_DNAV enum class EWeatherType : atUint32 { None, Snow, Rain }; Value unknown1; Value skyboxEnabled; Value weather; Value unknown2; Value unknown3; Value unknown4; Value unknown5; UniqueID32 skybox; Value unknown6; void gatherDependencies(std::vector& pathsOut, std::vector& lazyOut) const { g_curSpec->flattenDependencies(skybox, pathsOut); } }; }