CCAudioEngineSample.GameLayer.MakeUpArrowGraphic C# (CSharp) Method

MakeUpArrowGraphic() private method

private MakeUpArrowGraphic ( CocosSharp.CCDrawNode drawNode ) : void
drawNode CocosSharp.CCDrawNode
return void
		void MakeUpArrowGraphic(CCDrawNode drawNode)
		{
			var verts = new CCPoint[]
			{
				new CCPoint(0,0),
				new CCPoint(20, 22),
				new CCPoint(40, 0)
			};

			drawNode.DrawPolygon(verts, 3, CCColor4B.Gray, 1, CCColor4B.White);

		}