Initial commit

This commit is contained in:
Gericom
2025-11-22 11:08:28 +01:00
commit 9cf3ffbfcf
358 changed files with 58350 additions and 0 deletions

17
common/CardSaveType.h Normal file
View File

@@ -0,0 +1,17 @@
#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
};