init
This commit is contained in:
parent
54f5313273
commit
b49080f675
83 changed files with 2083 additions and 0 deletions
20
TowerGUI.h
Normal file
20
TowerGUI.h
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
//
|
||||
// Created by Benjamin on 1/30/2022.
|
||||
//
|
||||
|
||||
#ifndef SFML_TEMPLATE_TOWERGUI_H
|
||||
#define SFML_TEMPLATE_TOWERGUI_H
|
||||
|
||||
#include "Button.h"
|
||||
|
||||
class TowerGUI : public Button {
|
||||
public:
|
||||
TowerGUI(const sf::Texture &, float, float, float, int, const std::function<void()> &, Sprite*);
|
||||
|
||||
void hover() override;
|
||||
void unHover() override;
|
||||
void setVisible(bool visible);
|
||||
};
|
||||
|
||||
|
||||
#endif //SFML_TEMPLATE_TOWERGUI_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue