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

using System;
using Css;


namespace Css{
	
	/// <summary>
	/// The fill-mode for a particular keyframes animation.
	/// </summary>
	
	public enum KeyframesFill:int{
		None=0,
		Forward=1,
		Backward=2,
		Both=3
	}
	
}



