This commit is contained in:
bMorgan01 2022-03-08 10:18:34 -07:00
parent 54f5313273
commit b49080f675
83 changed files with 2083 additions and 0 deletions

16
TextBox.h Normal file
View file

@ -0,0 +1,16 @@
//
// Created by Benjamin on 2/27/2022.
//
#ifndef SFML_TEMPLATE_TEXTBOX_H
#define SFML_TEMPLATE_TEXTBOX_H
#include "Label.h"
class TextBox : public Label {
public:
TextBox(const std::string&, const sf::Font&, unsigned int, float, float, float, int);
};
#endif //SFML_TEMPLATE_TEXTBOX_H