123456789101112131415161718 |
- #pragma once
- #include "Dialog.h"
- #include <Knopf.h>
- using namespace Framework;
- class Nachricht : public Dialog
- {
- public:
-
-
-
-
- Nachricht( TextRenderer *tr, UIInit &uiFactory, char *nachricht, Punkt maxSize, std::function< void() > onClose );
-
- ~Nachricht();
- };
|