Files @ 2040107278aa
Branch filter:

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

jmaltzen
Fixes #8 #9 #6 #3 : Order of ingredients should now match the paint bench. Basic brute-force recipe generation implementation. Fixed rounding error on the simulator. Give feedback when using the simulator if reactions are missing. Also: adds an interface for modifying ingredient settings for recipe generation, adds a help option to view missing recorded reactions
using System;
namespace DesertPaintLab
{
	public partial class SimWindow : Gtk.Window
	{
		public SimWindow () : base(Gtk.WindowType.Toplevel)
		{
			this.Build ();
		}
	}
}