Files
OpenRA/OpenRa.BlockCacheVisualizer/Program.cs
chrisf 30480ab6a6 utility to show the contents of block caches, for those of us who suck at viewing channel-multiplexed images :)
git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1242 993157c7-ee19-0410-b2c4-bb4e9862e678
2007-07-14 08:34:53 +00:00

20 lines
416 B
C#

using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace OpenRa.BlockCacheVisualizer
{
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());
}
}
}