Files @ 71732f305328
Branch filter:

Location: ATITD-Tools/Desert-Paint-Lab/SimWindow.cs

jmaltzen
Pre-allocate a bunch of map entries, given that we know there are a fixed set of colors. Use fixed arrays in places where maps/sets were excessive. Switch away from using Gtk.Application.Invoke, which leaks a bunch of memory.
using System;
namespace DesertPaintLab
{
	public partial class SimWindow : Gtk.Window
	{
		public SimWindow () : base(Gtk.WindowType.Toplevel)
		{
			this.Build ();
		}
	}
}