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

19 lines
413 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 {
namespace VI {
2018-03-21 11:09:40 +01:00
class VI_U final : public Module::Interface {
public:
2018-03-21 11:09:40 +01:00
explicit VI_U(std::shared_ptr<Module> module, std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
};
} // namespace VI
} // namespace Service