File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ Example Usage Lua5.4.6:
32
32
// ...
33
33
// <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
34
34
// </PropertyGroup>
35
- using Lua54 ;
36
- using static Lua54 .Lua ;
35
+ using LuaNET . Lua54 ;
36
+ using static LuaNET . Lua54 .Lua ;
37
37
38
38
namespace TestLua ;
39
39
@@ -73,8 +73,8 @@ Example Usage LuaJIT:
73
73
// ...
74
74
// <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
75
75
// </PropertyGroup>
76
- using LuaJIT ;
77
- using static LuaJIT .Lua ;
76
+ using LuaNET . LuaJIT ;
77
+ using static LuaNET . LuaJIT .Lua ;
78
78
79
79
namespace TestLua ;
80
80
@@ -121,8 +121,8 @@ Example Usage NativeAOT DLL Library:
121
121
// I use the publish one
122
122
123
123
using System .Runtime .InteropServices ;
124
- using LuaJIT ;
125
- using static LuaJIT .Lua ;
124
+ using LuaNET . LuaJIT ;
125
+ using static LuaNET . LuaJIT .Lua ;
126
126
127
127
namespace TestLua ;
128
128
@@ -157,8 +157,8 @@ public unsafe class Test3
157
157
// ...
158
158
// <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
159
159
// </PropertyGroup>
160
- using LuaJIT ;
161
- using static LuaJIT .Lua ;
160
+ using LuaNET . LuaJIT ;
161
+ using static LuaNET . LuaJIT .Lua ;
162
162
163
163
namespace test4 ;
164
164
You can’t perform that action at this time.
0 commit comments