Files
pico-loader/common/CardSaveType.h
2025-11-23 17:14:17 +01:00

18 lines
266 B
C

#pragma once
/// @brief Enum representing the save type.
enum class CardSaveType
{
/// @brief The game has no save.
None = 0,
/// @brief EEPROM save.
Eeprom = 1,
/// @brief Flash save.
Flash = 2,
/// @brief NAND save.
Nand = 3
};