muon/include/ui.h
Stone Tickle 461e2832f6 wip 3
2025-10-16 10:29:17 -04:00

16 lines
252 B
C

/*
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
* SPDX-License-Identifier: GPL-3.0-only
*/
#ifndef MUON_UI_H
#define MUON_UI_H
#include <stdbool.h>
extern bool have_ui;
struct workspace;
bool ui_main(struct workspace *wk);
#endif