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
This commit is contained in:
chrisf
2007-07-14 08:34:53 +00:00
parent 4ad999f78b
commit 30480ab6a6
7 changed files with 385 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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());
}
}
}