//--------------------------------------
//                Blaze
//
//        For documentation or 
//    if you have any issues, visit
//        powerUI.kulestar.com
//
//    Copyright  2013 Kulestar Ltd
//          www.kulestar.com
//--------------------------------------

using System;
using UnityEngine;
using System.Collections;
using System.Collections.Generic;

namespace Blaze{

	/// <summary>
	/// Describes how images should be packed to atlases.
	/// </summary>
	
	public enum AtlasingMode{
		
		SmallestSpace,
		Columns
		
	}
	
}