16 lines
309 B
C++
16 lines
309 B
C++
#ifndef C_C_SIGN_H
|
|
#define C_C_SIGN_H
|
|
|
|
#include "Rectangle.h"
|
|
|
|
class Sign : public Rectangle {
|
|
protected:
|
|
std::string text;
|
|
public:
|
|
Sign(int x = 0, int y = 0, int width = 0, int height = 0, Colors color = Colors::WHITE, std::string text = "Hier Text einfügen");
|
|
void draw() override;
|
|
};
|
|
|
|
|
|
#endif
|