init
This commit is contained in:
parent
54f5313273
commit
b49080f675
83 changed files with 2083 additions and 0 deletions
20
VariableLabel.h
Normal file
20
VariableLabel.h
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
//
|
||||
// Created by Benjamin on 2/28/2022.
|
||||
//
|
||||
|
||||
#ifndef SFML_TEMPLATE_VARIABLELABEL_H
|
||||
#define SFML_TEMPLATE_VARIABLELABEL_H
|
||||
|
||||
#include "Label.h"
|
||||
|
||||
class VariableLabel : public Label {
|
||||
private:
|
||||
int* track;
|
||||
public:
|
||||
VariableLabel(int* track, const sf::Font&, unsigned int, float, float, int);
|
||||
|
||||
void update() override;
|
||||
};
|
||||
|
||||
|
||||
#endif //SFML_TEMPLATE_VARIABLELABEL_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue