am: implement basic WindowSystem behavior

This commit is contained in:
Liam
2024-02-12 10:09:40 -05:00
parent 26cb7c922a
commit c623e7a86d
16 changed files with 469 additions and 51 deletions

View File

@@ -6,13 +6,15 @@
#include "core/hle/service/am/event_observer.h"
#include "core/hle/service/am/service/all_system_applet_proxies_service.h"
#include "core/hle/service/am/service/application_proxy_service.h"
#include "core/hle/service/am/window_system.h"
#include "core/hle/service/server_manager.h"
namespace Service::AM {
void LoopProcess(Core::System& system) {
ButtonPoller button_poller(system);
EventObserver event_observer(system);
WindowSystem window_system(system);
ButtonPoller button_poller(system, window_system);
EventObserver event_observer(system, window_system);
auto server_manager = std::make_unique<ServerManager>(system);