Files @ ae8f7007cb0e
Branch filter:

Location: seniordesign-ui/GMap.NET.Core/GMap.NET/RenderMode.cs - annotation

ethanzonca@CL-ENS241-08.cedarville.edu
Added licensing information

namespace GMap.NET
{
   /// <summary>
   /// types of map rendering
   /// </summary>
   public enum RenderMode
   {
      /// <summary>
      /// gdi+ should work anywhere on Windows Forms
      /// </summary>
      GDI_PLUS,

      /// <summary>
      /// only on Windows Presentation Foundation
      /// </summary>
      WPF,
   }
}