// SPDX-License-Identifier: BSD-2-Clause // Copyright (c) 2025 Kirill Dmitrievich // File: splash.hh // Description: Startup splash screen #ifndef CLIENT_GUI_SPLASH_HH #define CLIENT_GUI_SPLASH_HH #pragma once namespace client_splash { void init(void); void init_late(void); void render(void); } // namespace client_splash #endif