Variablen.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #ifndef Variablen_H
  2. #define Variablen_H
  3. #ifndef variable
  4. #define variable extern
  5. #endif
  6. #include "..\Netzwerk\KSGKlient.h"
  7. #include "../Netzwerk/KeepAlive.h"
  8. #include "..\VorLogin\Login\Login.h"
  9. #include "..\VorLogin\VorLogin.h"
  10. #include "..\NachLogin\NachLogin.h"
  11. #include "..\NachLogin\UpdateGUI\UpdateGUI.h"
  12. #include "Bilder.h"
  13. #include "DLLDateien.h"
  14. #include <Animation.h>
  15. variable LoginKlient *loginKlient;
  16. variable RegisterKlient *registerKlient;
  17. variable InformationKlient *infoKlient;
  18. variable ChatKlient *chatKlient;
  19. variable AnmeldungKlient *anmeldungKlient;
  20. variable SpielKlient *spielKlient;
  21. variable ShopKlient *shopKlient;
  22. variable HistorieKlient *historieKlient;
  23. variable NewsKlient *newsKlient;
  24. variable EditorKlient *editorKlient;
  25. variable KartenKlient *kartenKlient;
  26. variable VorLogin *vorLogin;
  27. variable NachLogin *nachLogin;
  28. variable int aktion;
  29. variable Framework::Animation2D *ladeAnimation;
  30. variable Bildschirm *hauptScreen;
  31. variable Bilder *bilder;
  32. variable UpdateHandler *updateH;
  33. variable DLLDateien *dllDateien;
  34. variable bool _render;
  35. variable KeepAliveTh *keepAliveTh;
  36. void initVariables( Schrift *zSchrift, Bildschirm *zBildschirm );
  37. void releaseVariables();
  38. #endif