initial commit
This commit is contained in:
14
NewDialogs/Checkbox.h
Normal file
14
NewDialogs/Checkbox.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef CHECKBOX_H
|
||||
#define CHECKBOX_H
|
||||
|
||||
#include "Button.h"
|
||||
|
||||
class Checkbox : public Button {
|
||||
private:
|
||||
public:
|
||||
Checkbox(string text, SDL_Color color, SDL_Rect pos);
|
||||
virtual ~Checkbox();
|
||||
virtual void drawButton() override;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user