summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/ptm_play.h
blob: 2f4f0d6fd8f4429a292efd9d9f5545633ed1ed07 (plain) (tree)






















                                                                                                    
// 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 PTM_PLAY

namespace PTM_PLAY {

class Interface : public Service::Interface {
public:
    Interface();

std::string GetPortName() const override {
    return "ptm:play";
}
};

} // namespace