Added new EmuLuaLibrary.String, contains decimal to hex string and binary string.

This commit is contained in:
pasky1382 2014-01-19 16:36:43 +00:00
parent 16c0065635
commit a2dd821474
2 changed files with 2 additions and 0 deletions

View File

@ -117,6 +117,7 @@
<Compile Include="lua\EmuLuaLibrary.Movie.cs" />
<Compile Include="lua\EmuLuaLibrary.NES.cs" />
<Compile Include="lua\EmuLuaLibrary.SNES.cs" />
<Compile Include="lua\EmuLuaLibrary.String.cs" />
<Compile Include="lua\LuaDocumentation.cs" />
<Compile Include="lua\LuaFile.cs" />
<Compile Include="lua\LuaFileList.cs" />

View File

@ -94,6 +94,7 @@ namespace BizHawk.Client.EmuHawk
new NESLuaLibrary().LuaRegister(lua, Docs);
new SavestateLuaLibrary().LuaRegister(lua, Docs);
new SNESLuaLibrary().LuaRegister(lua, Docs);
new StringLuaLibrary().LuaRegister(lua, Docs);
Docs.Sort();
}