glue: Add scaffolding for bgtc:t and bgtc:sc services

This commit is contained in:
Zach Hilman
2019-06-24 19:20:06 -04:00
parent 9003e19797
commit 4fab0d392b
2 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,23 @@
// Copyright 2019 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
namespace Service::Glue {
class BGTC_T final : public ServiceFramework<BGTC_T> {
public:
BGTC_T();
~BGTC_T() override;
};
class BGTC_SC final : public ServiceFramework<BGTC_SC> {
public:
BGTC_SC();
~BGTC_SC() override;
};
} // namespace Service::Glue