1234567891011121314151617181920212223242526 |
- #pragma once
- #include "Dialog.h"
- #include <Knopf.h>
- class Frage : public Dialog
- {
- private:
- TextFeld *text;
- Knopf *right;
- Knopf *left;
- public:
-
-
-
-
-
-
-
-
-
- Frage( TextRenderer *zS, char *frage, char *left, char *right, std::function< void() > leftAk, std::function< void() > rightAk, std::function< void() > abbruchAk, Punkt maxSize );
-
- ~Frage();
- };
|