Add moon to backGround

This commit is contained in:
Nikola Petrov
2024-03-09 18:59:05 +01:00
parent e6f102266c
commit 2d67f41ab1
4 changed files with 59 additions and 29 deletions

View File

@@ -12,11 +12,23 @@ public:
private:
void starts();
void moon();
void mounten();
void drawMounten(std::vector<float> &data, int line, int varience, Color color);
void drawMounten(int line, int varience, Color color);
int size = 0;
Texture2D texShapes = {1, 1, 1, 1, 7};
Color backGroundColor = {21, 34, 56, 255};
size_t numOfStarts = 150;
Color starColor = WHITE;
int size = 0;
Texture2D texShapes = {1, 1, 1, 1, 7};
Color moonColor = {240, 240, 190, 255};
int minSizeOfMoon = 40;
int maxSizeOfMoon = 60;
Color mountenColor = {28, 28, 38, 255};
size_t mountenDataCap = 20;
std::vector<float> mountenData;
};