namespace Polybrush
{
	/**
	 * Describes different culling options.
	 */
	public enum Culling
	{
		Back = 0x1,
		Front = 0x2,
		FrontBack = 0x4
	}
}
