Added the AnimationSample example program. Hopefully this will serve as a quick guide to using pregen to generate packets for new developers
git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@346 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
20
libsecondlife-cs/examples/AnimationSample/Program.cs
Normal file
20
libsecondlife-cs/examples/AnimationSample/Program.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace AnimationSample
|
||||
{
|
||||
static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new Form1());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user