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

16 lines
265 B
C++

#pragma once
namespace RE::BSResource
{
class FileID
{
public:
[[nodiscard]] bool operator==(const FileID&) const noexcept = default;
// members
std::uint32_t file{ 0 }; // 0
std::uint32_t ext{ 0 }; // 4
};
static_assert(sizeof(FileID) == 0x8);
}