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:
mindtriggerz
2006-10-20 02:08:09 +00:00
parent 56398e17a1
commit a90ef2d493
15 changed files with 715 additions and 0 deletions

View 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());
}
}
}