Files
libremetaverse/Programs/GridImageUpload/GridImageUpload.cs
John Hurliman eae77e78dd * Renamed SLProxy to GridProxy and fixed prebuild config to break it up into library and exe
* Renamed all other examples containing SL to Grid*

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1977 52acb1d6-8a22-11de-b505-999d5b087335
2008-07-23 15:35:39 +00:00

20 lines
503 B
C#

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