-- Colors
c_aqua     = 16776960
c_black    = 0
c_blue     = 16711680
c_dkgray   = 4210752
c_fuchsia  = 16711935
c_gray     = 8421504
c_green    = 32768
c_lime     = 65280
c_ltgray   = 12632256
c_maroon   = 128
c_navy     = 8388608
c_olive    = 32896
c_orange   = 4235519
c_purple   = 8388736
c_red      = 255
c_silver   = 12632256
c_teal     = 8421376
c_white    = 16777215
c_yellow   = 65535
-- Math
pi	   = 3.14
--Primitive
pr_quards = 7;
pr_quards_strip = 8;
-- keyboard
vk_space = 32;

function draw_text_color(String, x, y, color)
	draw_set_color(color);
	draw_text(x, y, String);
end

font2 = font_load("Arial", 36, 1, 1);

while true do loop = 1
	draw_start();
	draw_set_font(0);
	draw_set_color(c_green);
	draw_text(200, 100, "Eazy Game Maker");
	draw_set_color(c_purple);
	draw_text(6, 200, current_second());
	draw_rectangle_color(mouse_x(), mouse_y(), mouse_x()+200, mouse_y()+200, 255, 255*255, 255*255*255, 0, true);
	wyb = choose(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15);
	draw_text_color("By Mateusz Bacawski", 10, 10, c_red);
	if(keyboard_key(vk_space) == 1) then
		draw_text(6, 200, current_second());
	end
	if(keyboard_key(vk_space) == 1) then
	screenshot();
	end
	draw_end();
	sleep(15);
end
