package a0901c_f_Formen_Teil3_Rennen_VORLAGE;

import java.awt.Color;

public class Start
{
	public static void main(String[] args)
	{
		AbsForm[] maus =
		{
			new Dreieck(160,70,70, Color.GRAY),	//Kopf
	    	new Kreis(150,75,10, Color.BLUE),		//Augen
	    	new Kreis(170,75,10, Color.BLUE),
	    	new Kreis(128,55,40, Color.GRAY),    	//Ohren
	    	new Kreis(192,55,40, Color.GRAY),
	    	new Kreis(120,130,30, Color.GRAY),		//Arme
	    	new Kreis(200,130,30, Color.GRAY),
	    	new Kreis(120,170,30, Color.GRAY),		//Beine
	    	new Kreis(200,170,30, Color.GRAY),
	    	new Quadrat(160,90,10, Color.RED),		//Mund
			new Dreieck(160,113,30, Color.GRAY),	//Hals
			new Quadrat(160,150,50, Color.GRAY),	//Bauch
		};
		
		AbsForm[] baer =
		{
			new Kreis(160,100,50, Color.ORANGE),	//Kopf
			new Kreis(150,90,10, Color.BLUE),		//Augen
			new Kreis(170,90,10, Color.BLUE),
			new Kreis(135,76,20, Color.ORANGE),   	//Ohren
			new Kreis(185,76,20, Color.ORANGE),
			new Kreis(120,130,30, Color.ORANGE),	//Arme
			new Kreis(200,130,30, Color.ORANGE),
			new Kreis(120,170,30, Color.ORANGE),	//Beine
			new Kreis(200,170,30, Color.ORANGE),
			new Quadrat(160,110,14, Color.RED),		//Mund
			new Quadrat(160,150,50, Color.ORANGE),	//Bauch
		};
		
		Tier[] tier =
		{
			new Tier(-50,0, baer),
			new Tier(-50,200, maus)
		};
				
		new MeinFenster(tier);
	}
}
