Files
eden/src/core/hle/service/hid/xcd.h
T

21 lines
390 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2018-07-26 08:50:32 -04:00
#pragma once
#include "core/hle/service/service.h"
namespace Core {
class System;
}
2018-07-26 08:50:32 -04:00
namespace Service::HID {
class XCD_SYS final : public ServiceFramework<XCD_SYS> {
public:
explicit XCD_SYS(Core::System& system_);
~XCD_SYS() override;
2018-07-26 08:50:32 -04:00
};
} // namespace Service::HID