Qt-Gebouw/draaideur.h
Hello-User e3d7f5e8c9 aaa
2022-02-18 00:51:34 +01:00

18 lines
247 B
C++

#ifndef DRAAIDEUR_H
#define DRAAIDEUR_H
#include "deur.h"
class QPaintDevice;
class draaideur : public Deur{
private:
bool liggend;
public:
draaideur(int,int,int,bool);
void teken(QPaintDevice*) override;
};
#endif // DRAAIDEUR_H