Who knows

This commit is contained in:
Benjamin Morgan 2025-09-26 09:26:47 -06:00
parent eaf5a55d18
commit 32e50969b4
45 changed files with 38346 additions and 38306 deletions

View file

@ -1,29 +1,29 @@
//
// Created by benmo on 3/3/2020.
//
#ifndef SFML_TEMPLATE_PLANET_H
#define SFML_TEMPLATE_PLANET_H
#include "GameSprite.h"
class Planet : public GameSprite {
private:
bool landable = true;
std::string name;
std::string desc;
int image;
public:
Planet(const sf::Texture &texture, float scale, float xPos, float yPos, float direction);
Planet(const std::string& _name, const std::string& _desc, int landscape, const sf::Texture &texture, float scale, float xPos, float yPos, float direction);
bool isLandable();
std::string getName();
std::string getDesc();
int getImageNum();
};
#endif //SFML_TEMPLATE_PLANET_H
//
// Created by benmo on 3/3/2020.
//
#ifndef SFML_TEMPLATE_PLANET_H
#define SFML_TEMPLATE_PLANET_H
#include "GameSprite.h"
class Planet : public GameSprite {
private:
bool landable = true;
std::string name;
std::string desc;
int image;
public:
Planet(const sf::Texture &texture, float scale, float xPos, float yPos, float direction);
Planet(const std::string& _name, const std::string& _desc, int landscape, const sf::Texture &texture, float scale, float xPos, float yPos, float direction);
bool isLandable();
std::string getName();
std::string getDesc();
int getImageNum();
};
#endif //SFML_TEMPLATE_PLANET_H