mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-25 03:25:17 +00:00
12 lines
269 B
C++
12 lines
269 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "base_device.h"
|
|
|
|
namespace Core::Devices {
|
|
|
|
BaseDevice::BaseDevice() = default;
|
|
|
|
BaseDevice::~BaseDevice() = default;
|
|
|
|
} // namespace Core::Devices
|