suyu/src/core/hle/service/ptm/ptm_play.h
Lioncash cd778cf991 service: Drop '_Interface' in ptm service class names
Inheriting from Service::Interface makes this obvious.
2016-12-08 06:13:04 -05:00

22 lines
413 B
C++

// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
namespace Service {
namespace PTM {
class PTM_Play final : public Interface {
public:
PTM_Play();
std::string GetPortName() const override {
return "ptm:play";
}
};
} // namespace PTM
} // namespace Service