Skip to content

Commit a218eae

Browse files
committed
Updated README
1 parent 654217b commit a218eae

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ dotnet add package Lua.NET --version 1.0.0
77

88
Supports Lua5.4 Lua5.3 and LuaJIT
99

10-
Hardcoded to only use doubles and 64-bit integers, so the Lua library will have to be built accordingly. This CAN be changed with manual edits, but it wasn't fun writing this library. This code was made with with the default includes on a 64-bit windows 10 machine using Lua's makefile and LuaJIT. All DLL's are built differently, so you will have to edit the name of the DLL inside of the respected cs file to the name of your DLL; will make it easier in the future.
10+
Hardcoded to only use doubles and 64-bit integers, so the Lua library will have to be built accordingly. This CAN be changed with manual edits, but it wasn't fun writing this library. This code was made with with the default includes on a 64-bit windows 10 machine using Lua's makefile and LuaJIT. All DLL's are named differently, make sure the name of the Lua dll matches that of the .cs file; will make it easier in the future.
11+
```
12+
Lua5.4 - lua544.dll
13+
Lua5.3 - lua536.dll
14+
LuaJIT - lua51.dll
15+
```
1116

1217
Example Usage Lua5.4.4:
1318
```C#

0 commit comments

Comments
 (0)