2015-07-02 00:17:15 +00:00
|
|
|
|
using System;
|
2016-02-01 01:54:48 +00:00
|
|
|
|
|
2017-04-14 19:59:01 +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)
|
|
|
|
|
{
|
2017-04-14 19:59:01 +00:00
|
|
|
|
// just a stub for right now
|
2016-02-01 01:54:48 +00:00
|
|
|
|
callback();
|
2015-07-02 00:17:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|