git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@360 52acb1d6-8a22-11de-b505-999d5b087335
20 lines
345 B
C#
20 lines
345 B
C#
using System;
|
|
|
|
namespace sceneviewer
|
|
{
|
|
static class SceneViewer
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
static void Main(string[] args)
|
|
{
|
|
using (Viewer game = new Viewer())
|
|
{
|
|
game.Run();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|