idTech4.UI.idUserInterface.DrawCursor C# (CSharp) Method

DrawCursor() public method

public DrawCursor ( ) : void
return void
		public void DrawCursor()
		{
			if(this.Disposed == true)
			{
				throw new ObjectDisposedException(this.GetType().Name);
			}

			if((this.Desktop == null) || ((this.Desktop.Flags & WindowFlags.MenuInterface) == WindowFlags.MenuInterface))
			{
				idE.UIManager.Context.DrawCursor(ref _cursorX, ref _cursorY, 32.0f);
			}
			else
			{
				idE.UIManager.Context.DrawCursor(ref _cursorX, ref _cursorY, 64.0f);
			}
		}