21 lines
No EOL
376 B
C++
21 lines
No EOL
376 B
C++
//
|
|
// EuropaTools
|
|
//
|
|
// (C) 2021-2025 modeco80 <lily.modeco80@protonmail.ch>
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
//
|
|
|
|
#ifndef EUROPA_UTIL_USEFULCONSTANTS_HPP
|
|
#define EUROPA_UTIL_USEFULCONSTANTS_HPP
|
|
|
|
#include <cstddef>
|
|
|
|
namespace europa::util {
|
|
|
|
/// The size of a CD-ROM (ISO 9660) secor.
|
|
constexpr static std::size_t kCDSectorSize = 0x800;
|
|
|
|
} // namespace europa::util
|
|
|
|
#endif |