/* * Copyright (C) 2020-2022 The opuntiaOS Project Authors. * + Contributed by Nikita Melekhin * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "ResourceManager.h" #include namespace WinServer { ResourceManager* s_WinServer_ResourceManager_the = nullptr; ResourceManager::ResourceManager() { s_WinServer_ResourceManager_the = this; LG::PNG::PNGLoader loader; m_background = loader.load_from_file("/res/wallpapers/new_year.png"); } } // namespace WinServer