Added new EmuLuaLibrary.String, contains decimal to hex string and binary string.
This commit is contained in:
parent
16c0065635
commit
a2dd821474
|
@ -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" />
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue