mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
10 lines
114 B
C
10 lines
114 B
C
|
#pragma once
|
||
|
|
||
|
enum class GWindowType {
|
||
|
Invalid = 0,
|
||
|
Normal,
|
||
|
Menu,
|
||
|
WindowSwitcher,
|
||
|
Taskbar,
|
||
|
};
|