|
1
|
draw_set_color(c_black);
|
|
2
|
ossafe_fill_rectangle(0, 0, room_width, 199);
|
|
3
|
ossafe_fill_rectangle(0, 199, 39, room_height);
|
|
4
|
ossafe_fill_rectangle(600, 199, room_width, room_height);
|
|
5
|
ossafe_fill_rectangle(39, 440, 279, room_height);
|
|
6
|
ossafe_fill_rectangle(360, 440, room_width, room_height);
|
|
7
|
ossafe_fill_rectangle(-40, -40, 0, room_height);
|
|
8
|
ossafe_fill_rectangle(room_width + 40, -40, room_width, room_height);
|
|
9
|
ossafe_fill_rectangle(-40, -40, room_width, 0);
|
|
10
|
ossafe_fill_rectangle(-40, room_height + 40, room_width, room_height);
|
|
11
|
draw_set_color(c_white);
|