Files
libremetaverse/SLImageUpload/SLImageUpload.cs
John Hurliman 8783b1d040 Adding SLImageUpload to the trunk
git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1310 52acb1d6-8a22-11de-b505-999d5b087335
2007-07-16 17:09:14 +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());
}
}
}