Karte.h 555 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef Karte_H
  2. #define Karte_H
  3. #include <Bild.h>
  4. #include <Rahmen.h>
  5. using namespace Framework;
  6. class Kamera;
  7. class Karte : public virtual ReferenceCounter
  8. {
  9. private:
  10. int karteId;
  11. Bild *map;
  12. LRahmen *rahmen;
  13. public:
  14. // Konstruktor
  15. Karte();
  16. // Destruktor
  17. ~Karte();
  18. // nicht constant
  19. void setSize( int br, int hö );
  20. void setId( int id );
  21. void render( Kamera *zKam, Bild &zRObj );
  22. // constant
  23. int getId() const;
  24. int getBreite() const;
  25. int getHeight() const;
  26. Bild *zMap() const;
  27. };
  28. #endif