BizHawk/BizHawk.MultiClient/tools/LuaFunctionList.cs

30 lines
587 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace BizHawk.MultiClient
{
public partial class LuaFunctionList : Form
{
public LuaFunctionList()
{
InitializeComponent();
}
private void LuaFunctionList_Load(object sender, EventArgs e)
{
FunctionBox.Text = Global.MainForm.LuaConsole1.LuaImp.LuaLibraryList;
}
private void OK_Click(object sender, EventArgs e)
{
this.Close();
}
}
}