Files
libremetaverse/Programs/SLImageUpload/SLImageUpload.cs
John Hurliman 660db80eb5 Moved programs into the Programs folder
git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1958 52acb1d6-8a22-11de-b505-999d5b087335
2008-07-22 23:00:32 +00:00

20 lines
497 B
C#

using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace SLImageUpload
{
static class SLImageUpload
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmSLImageUpload());
}
}
}