tower-defense-cpp/TextBox.h
bMorgan01 b49080f675 init
2022-03-08 10:18:34 -07:00

16 lines
312 B
C++

//
// 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