mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-16 23:30:05 +00:00
22 lines
411 B
C++
22 lines
411 B
C++
|
// Copyright 2021 yuzu 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 Core {
|
||
|
class System;
|
||
|
}
|
||
|
|
||
|
namespace Service::Glue {
|
||
|
|
||
|
class ECTX_AW final : public ServiceFramework<ECTX_AW> {
|
||
|
public:
|
||
|
explicit ECTX_AW(Core::System& system_);
|
||
|
~ECTX_AW() override;
|
||
|
};
|
||
|
|
||
|
} // namespace Service::Glue
|