module Sandbox
{
	script LoadCharacterTextures
	{
		LoadTexturePage(zombieFrames);
		LoadTexturePage(characters);
		LoadTexturePage(characterpieces);
		Tutorial.DisableTutorialZombieControl();
	}

	script LoadMapTextures
	{
		LoadTexturePage(tiles1);
		LoadTexturePage(tiles2);
		LoadTexturePage(tiles3);
		LoadTexturePage(tiles4);
	}

	trigger OnPreMapLoad
	{
		call LoadMapTextures
	}

	trigger OnPostMapLoad
	{
		call LoadCharacterTextures
	}
}