Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/BizHawk.Client.Common/lua/EnvironmentSandbox.cs
2 views
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();
		}
	}
}