mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
28 lines
No EOL
472 B
C++
28 lines
No EOL
472 B
C++
#pragma once
|
|
#include <array>
|
|
#include <vector>
|
|
|
|
#include "action_replay.hpp"
|
|
#include "helpers.hpp"
|
|
|
|
class Cheats {
|
|
public:
|
|
enum class CheatType {
|
|
ActionReplay, // CTRPF cheats
|
|
Gateway,
|
|
};
|
|
|
|
struct Cheat {
|
|
CheatType type;
|
|
std::vector<u32> instructions;
|
|
};
|
|
|
|
Cheats();
|
|
void addCheat(const Cheat& cheat);
|
|
void runCheats();
|
|
void reset();
|
|
|
|
private:
|
|
ActionReplay ar; // An ActionReplay cheat machine for executing CTRPF codes
|
|
std::vector<Cheat> cheats;
|
|
}; |