123456789101112131415161718192021 |
- #pragma once
- #include "Dialog.h"
- #include <Knopf.h>
- class Frage : public Dialog
- {
- public:
-
-
-
-
-
-
-
-
-
- Frage( TextRenderer *tr, UIInit &uiFactory, char *frage, char *left, char *right, std::function< void() > leftAk, std::function< void() > rightAk, std::function< void() > abbruchAk, Punkt maxSize );
-
- ~Frage();
- };
|