void Awake()
	{

		instance = this;

		//Relate combinations to animators.
		CharacterAndStyle C_Blue = new CharacterAndStyle(Character.Colossus, CharacterStyle.BLUE);
		CharacterAndStyle C_Green = new CharacterAndStyle(Character.Colossus, CharacterStyle.GREEN);
		CharacterAndStyle C_Yellow = new CharacterAndStyle(Character.Colossus, CharacterStyle.YELLOW);
		CharacterAndStyle C_Red = new CharacterAndStyle(Character.Colossus, CharacterStyle.RED);

		animators.Add (C_Blue, C_BlueAnimator);
		animators.Add(C_Green, C_GreenAnimator);
		animators.Add(C_Yellow, C_YellowAnimator);
		animators.Add(C_Red, C_RedAnimator);

		CharacterAndStyle B_Blue = new CharacterAndStyle(Character.Blue, CharacterStyle.BLUE);
		CharacterAndStyle B_Green = new CharacterAndStyle(Character.Blue, CharacterStyle.GREEN);
		CharacterAndStyle B_Red = new CharacterAndStyle(Character.Blue, CharacterStyle.RED);
		CharacterAndStyle B_Yellow = new CharacterAndStyle(Character.Blue, CharacterStyle.YELLOW);

		animators.Add(B_Blue, B_BlueAnimator);
		animators.Add(B_Green, B_GreenAnimator);
		animators.Add(B_Red, B_RedAnimator);
		animators.Add(B_Yellow, B_YellowAnimator);

		CharacterAndStyle M_Green = new CharacterAndStyle(Character.Mummy, CharacterStyle.GREEN);
		CharacterAndStyle M_Red = new CharacterAndStyle(Character.Mummy, CharacterStyle.RED);
		CharacterAndStyle M_Blue = new CharacterAndStyle(Character.Mummy, CharacterStyle.BLUE);
		CharacterAndStyle M_Yellow = new CharacterAndStyle(Character.Mummy, CharacterStyle.YELLOW);

		animators.Add(M_Green, M_GreenAnimator);
		animators.Add(M_Red, M_RedAnimator);
		animators.Add(M_Blue, M_BlueAnimator);
		animators.Add(M_Yellow, M_YellowAnimator);


		//Example for head textures. Note keys are already available
		headTextures.Add(C_Green, C_GreenHead);

		//Example for body sprites
		bodySprites.Add(C_Green, C_GreenBody);

	}