BizHawk/BizHawk.Client.Common/lua/EnvironmentSandbox.cs

15 lines
275 B
C#

using System;
// 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();
}
}
}