mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-03-24 11:58:32 -06:00
Some checks are pending
citra-build / source (push) Waiting to run
citra-build / linux (appimage) (push) Waiting to run
citra-build / linux (fresh) (push) Waiting to run
citra-build / macos (arm64) (push) Waiting to run
citra-build / macos (x86_64) (push) Waiting to run
citra-build / macos-universal (push) Blocked by required conditions
citra-build / windows (msvc) (push) Waiting to run
citra-build / windows (msys2) (push) Waiting to run
citra-build / android (push) Waiting to run
citra-build / ios (push) Waiting to run
citra-format / clang-format (push) Waiting to run
citra-transifex / transifex (push) Waiting to run
21 lines
438 B
C++
21 lines
438 B
C++
// Copyright Citra Emulator Project / Azahar Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "common/common_types.h"
|
|
|
|
namespace Common::Hacks {
|
|
|
|
enum class HackType : int {
|
|
RIGHT_EYE_DISABLE,
|
|
ACCURATE_MULTIPLICATION,
|
|
DECRYPTION_AUTHORIZED,
|
|
ONLINE_LLE_REQUIRED,
|
|
REGION_FROM_SECURE,
|
|
};
|
|
|
|
class UserHackData {};
|
|
|
|
} // namespace Common::Hacks
|