Feat: Fügt einen dynamisch erstell- und anzeigbaren Dialog hinzu

This commit is contained in:
2025-12-23 01:00:23 +01:00
parent 016ba85416
commit 246c0401cc
4 changed files with 267 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
/// Eine Enum, um den Typ eines Dialogs festzulegen
enum DialogTypeEnum {
/// Der Standarddialog
info,
/// Der Errordialog
error,
/// Der Erfolgreichdialog
success,
}