apio
140910763e
All checks were successful
Build and test / build (push) Successful in 1m56s
Why are command-line utilities stored in "apps"? And why are apps like "editor" or "terminal" top-level directories? Command-line utilities now go in "utils". GUI stuff now goes in "gui". This includes: libui -> gui/libui, wind -> gui/wind, GUI apps -> gui/apps, editor&terminal -> gui/apps... System services go in "system".
15 lines
235 B
C++
15 lines
235 B
C++
#pragma once
|
|
#include <moon/Keyboard.h>
|
|
|
|
namespace ui
|
|
{
|
|
enum Modifier
|
|
{
|
|
Mod_Shift = (1 << 0),
|
|
Mod_Alt = (1 << 1),
|
|
Mod_Super = (1 << 2),
|
|
Mod_AltGr = (1 << 3),
|
|
Mod_Ctrl = (1 << 4)
|
|
};
|
|
}
|