12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef AccountAktivität_H
- #define AccountAktivität_H
- #include <AuswahlBox.h>
- #include <Diagramm.h>
- #include <Fenster.h>
- #include <Thread.h>
- using namespace Framework;
- class AccountAktivität : public Thread
- {
- private:
- Fenster *aktivitätF;
- LDiag *online;
- LDiag *spiele;
- int status;
- int accId;
- int animation;
- unsigned char alpha;
- double tickVal;
- bool rend;
- public:
-
- AccountAktivität();
-
- ~AccountAktivität();
-
- void reset();
- void ladeStatistik( int accId );
- virtual void thread();
- void setSichtbar( bool sichtbar, bool nachRechts );
- bool tick( double zeit );
- void render( Bild &zRObj );
-
- int getStatus() const;
- };
- #endif
|