b90ff739a0
* Add CheatEngine; Add support for Gateway cheats; Add Cheat UI * fix a potential crash on some systems * fix substr with negative length * Add Joker to the NonOp comp handling * Fixup JokerOp * minor fixup in patchop; add todo for nested loops * Add comment for PadState member variable in HID * fix: stol to stoul in parsing cheat file * fix misplaced parsing of values; fix patchop code * add missing break * Make read_func and write_func a template parameter
29 lines
620 B
C++
29 lines
620 B
C++
// Copyright 2018 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Cheats {
|
|
class CheatBase {
|
|
public:
|
|
virtual ~CheatBase();
|
|
virtual void Execute(Core::System& system) = 0;
|
|
|
|
virtual bool IsEnabled() const = 0;
|
|
virtual void SetEnabled(bool enabled) = 0;
|
|
|
|
virtual std::string GetComments() const = 0;
|
|
virtual std::string GetName() const = 0;
|
|
virtual std::string GetType() const = 0;
|
|
|
|
virtual std::string ToString() const = 0;
|
|
};
|
|
} // namespace Cheats
|