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

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

namespace PowerUI{
	
	/// <summary>
	/// Represents a canvas context which lets you draw 2D shapes and polygons on the UI.
	/// See the canvas html tag for more information.
	/// </summary>
	
	public class CanvasContext2D:CanvasContext{
		
		/// <summary>Creates a new canvas context for the given canvas element.</summary>
		/// <param name="canvas">The canvas handler for a particular canvas element.</param>
		public CanvasContext2D(HtmlCanvasElement canvas):base(canvas){}
		
	}
	
}