Skip to content

Commit a17b5b7

Browse files
committed
cloud
1 parent 62c303b commit a17b5b7

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

cloud.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#include "graphics.h"
2+
3+
void cloud() {
4+
setfillstyle(SOLID_FILL, WHITE, -1);
5+
fillellipse(600, 100, 50, 25);
6+
fillellipse(625, 115, 50, 25);
7+
fillellipse(585, 120, 50, 25);
8+
}

picture.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
void house(); // 1 участник house.cpp
1+
void house(); // 1 участник house.cpp
22
void sun(); // 2 участник sun.cpp
33
void man(); // 3 участник man.cpp
44
void fence(); // 4 участник fence.cpp
55
void tree(); // если есть 5 участник tree.cpp
6+
void cloud();

0 commit comments

Comments
 (0)