suyu/src/core/hle/service/vi/vi_m.h

17 lines
388 B
C
Raw Normal View History

// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
2018-03-21 11:09:40 +01:00
#include "core/hle/service/vi/vi.h"
namespace Service::VI {
2018-03-21 11:09:40 +01:00
class VI_M final : public Module::Interface {
public:
2018-03-21 11:09:40 +01:00
explicit VI_M(std::shared_ptr<Module> module, std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
};
} // namespace Service::VI