This repository has been archived on 2025-06-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
LotoStatek/headers/Meteor.h
2024-12-19 16:01:21 +01:00

17 lines
328 B
C++

#ifndef LOTOSTATEK_METEOR_H
#define LOTOSTATEK_METEOR_H
#include "SFML/Graphics/Texture.hpp"
#include "SFML/Graphics/Sprite.hpp"
#include "Position.h"
#include "ObjectItem.hpp"
class Meteor : public ObjectItem {
public:
Meteor(float x, float y, sf::Texture &texture_);
void update();
};
#endif //LOTOSTATEK_METEOR_H