// // EuropaTools // // (C) 2021-2025 modeco80 // // SPDX-License-Identifier: MIT // #ifndef EUROPA_UTIL_USEFULCONSTANTS_HPP #define EUROPA_UTIL_USEFULCONSTANTS_HPP #include namespace europa::util { /// The size of a CD-ROM (ISO 9660) secor. constexpr static std::size_t kCDSectorSize = 0x800; } // namespace europa::util #endif