2018-05-22 12:00:30 +00:00
|
|
|
#ifndef GALAXY_H
|
|
|
|
#define GALAXY_H
|
|
|
|
|
|
|
|
#include "include/Engine.h"
|
|
|
|
|
|
|
|
#include "galaxy_objects.h"
|
|
|
|
|
|
|
|
class Galaxy {
|
|
|
|
public:
|
|
|
|
|
|
|
|
// ====== All objects =======
|
|
|
|
std::vector<StarObject> Stars;
|
|
|
|
// ====== All objects =======
|
|
|
|
|
2018-05-23 11:46:02 +00:00
|
|
|
// ::#Params#::
|
|
|
|
std::string name;
|
|
|
|
float scale;
|
|
|
|
Eigen::Vector2f position;
|
|
|
|
std::string texture;
|
2018-05-22 12:00:30 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|