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

23 lines
436 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_Interface : public Service::Interface {
2015-01-19 00:20:28 +01:00
public:
PTM_Play_Interface();
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