package client;

import client.control.menu.ThemeManager;

/**
 * Application's startup's properties
 *
 * @author Dream Team - ING2
 *
 */
public interface ApplicationProperties {

	/**
	 * Property that specify the default theme with which the application starts.
	 * You have to give a valid name which are all defined in <code>ThemeManager</code>
	 * @see ThemeManager
	 */
	public static final String DEFAULT_THEME_PROPERTY = "defaultTheme";

}
