2015-07-02 00:17:15 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2016-02-01 01:54:48 +00:00
|
|
|
|
//TODO - kill this file (or renew the concept as distinct from the LuaSandbox?)
|
|
|
|
|
|
2016-01-30 20:26:02 +00:00
|
|
|
|
namespace BizHawk.Client.Common
|
2015-07-02 00:17:15 +00:00
|
|
|
|
{
|
|
|
|
|
public class EnvironmentSandbox
|
|
|
|
|
{
|
|
|
|
|
public static void Sandbox(Action callback)
|
|
|
|
|
{
|
2016-02-01 01:54:48 +00:00
|
|
|
|
//just a stub for right now
|
|
|
|
|
callback();
|
2015-07-02 00:17:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|