mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-28 02:15:07 +00:00
16 lines
252 B
C
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
|