suyu/src/core/hle/service/ptm/ptm_play.h

23 lines
413 B
C
Raw Normal View History

2015-01-19 00:20:28 +01:00
// 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 {
2015-01-19 00:20:28 +01:00
class PTM_Play final : public Interface {
2015-01-19 00:20:28 +01:00
public:
PTM_Play();
2015-01-19 00:20:28 +01:00
std::string GetPortName() const override {
return "ptm:play";
}
2015-01-19 00:20:28 +01:00
};
} // namespace PTM
} // namespace Service