* 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
This commit is contained in:
20
Programs/AvatarPreview/Program.cs
Normal file
20
Programs/AvatarPreview/Program.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user