* 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
20 lines
484 B
C#
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());
|
|
}
|
|
}
|
|
} |