mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:28:10 +00:00

I originally thought I would do this inside WindowServer, but let's try to make it as a standalone app that communicates with WindowServer instead. That will allow us to use LibGUI. :^)
9 lines
115 B
C
9 lines
115 B
C
#pragma once
|
|
|
|
enum class WSWindowType {
|
|
Invalid = 0,
|
|
Normal,
|
|
Menu,
|
|
WindowSwitcher,
|
|
Taskbar,
|
|
};
|