mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-01-11 20:29:23 +01:00
18 lines
271 B
C
18 lines
271 B
C
#pragma once
|
|
|
|
/// @brief Enum representing the save type.
|
|
enum class CardSaveType : u8
|
|
{
|
|
/// @brief The game has no save.
|
|
None = 0,
|
|
|
|
/// @brief EEPROM save.
|
|
Eeprom = 1,
|
|
|
|
/// @brief Flash save.
|
|
Flash = 2,
|
|
|
|
/// @brief NAND save.
|
|
Nand = 3
|
|
};
|