mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 08:35:47 +00:00
core: Namespace EmuWindow
Gets the class out of the global namespace.
This commit is contained in:
parent
20f29b2528
commit
53e86e35eb
14 changed files with 44 additions and 22 deletions
|
@ -6,7 +6,9 @@
|
|||
|
||||
#include <memory>
|
||||
|
||||
namespace Core::Frontend {
|
||||
class EmuWindow;
|
||||
}
|
||||
|
||||
namespace VideoCore {
|
||||
|
||||
|
@ -18,6 +20,6 @@ class RendererBase;
|
|||
* @note The returned renderer instance is simply allocated. Its Init()
|
||||
* function still needs to be called to fully complete its setup.
|
||||
*/
|
||||
std::unique_ptr<RendererBase> CreateRenderer(EmuWindow& emu_window);
|
||||
std::unique_ptr<RendererBase> CreateRenderer(Core::Frontend::EmuWindow& emu_window);
|
||||
|
||||
} // namespace VideoCore
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue