12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef Karte_H
- #define Karte_H
- #include <Bild.h>
- using namespace Framework;
- class Kamera;
- class Karte
- {
- private:
- int karteId;
- Bild *map;
- LRahmen *rahmen;
- int ref;
- public:
-
- Karte();
-
- ~Karte();
-
- void setSize( int br, int hö );
- void setId( int id );
- void render( Kamera *zKam, Bild &zRObj );
-
- int getId() const;
- int getBreite() const;
- int getHeight() const;
- Bild *zMap() const;
-
- Karte *getThis();
- Karte *release();
- };
- #endif
|