init
This commit is contained in:
parent
54f5313273
commit
b49080f675
83 changed files with 2083 additions and 0 deletions
16
TextBox.h
Normal file
16
TextBox.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue