mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-09 00:22:43 +02:00
11 lines
127 B
C
11 lines
127 B
C
#pragma once
|
|
|
|
enum class GWindowType {
|
|
Invalid = 0,
|
|
Normal,
|
|
Menu,
|
|
WindowSwitcher,
|
|
Taskbar,
|
|
Tooltip,
|
|
};
|