31 lines
775 B
C#
31 lines
775 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace BizHawk.Client.Common
|
|
{
|
|
public class LuaFunctionList : List<NamedLuaFunction>
|
|
{
|
|
public NamedLuaFunction this[string guid]
|
|
{
|
|
get
|
|
{
|
|
return this.FirstOrDefault(x => x.Guid.ToString() == guid);
|
|
}
|
|
}
|
|
|
|
public new bool Remove(NamedLuaFunction function)
|
|
{
|
|
Global.Emulator.CoreComm.InputCallback.Remove(function.Callback);
|
|
Global.Emulator.CoreComm.MemoryCallbackSystem.Remove(function.Callback);
|
|
return base.Remove(function);
|
|
}
|
|
|
|
public void ClearAll()
|
|
{
|
|
Global.Emulator.CoreComm.InputCallback.RemoveAll(this.Select(x => x.Callback));
|
|
Global.Emulator.CoreComm.MemoryCallbackSystem.RemoveAll(this.Select(x => x.Callback));
|
|
Clear();
|
|
}
|
|
}
|
|
}
|