using System; using System.Collections.Generic; using System.Linq; using System.Text; //TODO - kill this file (or renew the concept as distinct from the LuaSandbox?) namespace BizHawk.Client.Common { public class EnvironmentSandbox { public static void Sandbox(Action callback) { //just a stub for right now callback(); } } }