Files
libremetaverse/Programs/AvatarPreview/Program.cs
John Hurliman ed0d5092f7 * Adding missing files from last commit, finishing out [LIBOMV-320]
* Added AvatarPreview to trunk
* Switched from OpenSim Prebuild.exe to latest official SVN checkout
* Replaced Exe with WinExe where appropriate in prebuild.xml

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1983 52acb1d6-8a22-11de-b505-999d5b087335
2008-07-23 23:18:27 +00:00

20 lines
484 B
C#

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