namespace Polybrush
{
	/**
	 *	Describes different mesh painting modes.
	 */
	public enum z_PaintMode
	{
		// A brush with radius and falloff.
		Brush,
		// Fill hovered polygons with a uniform color.
		Fill,
		// Flood fill the entire selection
		Flood
	}
}
