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