14 lines
278 B
C++
14 lines
278 B
C++
#ifndef LOTOSTATEK_HEART_HPP
|
|
#define LOTOSTATEK_HEART_HPP
|
|
|
|
#include "SFML/Graphics/Texture.hpp"
|
|
#include "ObjectItem.hpp"
|
|
|
|
class Heart : public ObjectItem {
|
|
public:
|
|
Heart(float x, float y, sf::Texture &texture);
|
|
void update() override;
|
|
};
|
|
|
|
#endif //LOTOSTATEK_HEART_HPP
|