mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-15 18:49:11 +01:00
00a4404045
Refactor Action Replay code into its own class like Gecko Codes.
17 lines
331 B
C++
17 lines
331 B
C++
// Copyright 2008 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include "Common/CommonTypes.h"
|
|
#include "Core/ActionReplay.h"
|
|
|
|
namespace ActionReplay
|
|
{
|
|
void DecryptARCode(std::vector<std::string> vCodes, std::vector<AREntry>* ops);
|
|
|
|
} // namespace
|