10 lines
243 B
C++
10 lines
243 B
C++
|
// Copyright 2018 Citra Emulator Project
|
||
|
// Licensed under GPLv2 or any later version
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#include "core/cheats/cheat_base.h"
|
||
|
|
||
|
namespace Cheats {
|
||
|
CheatBase::~CheatBase() = default;
|
||
|
} // namespace Cheats
|