We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1712b45 + ca60064 commit 0f179ffCopy full SHA for 0f179ff
src/Lua.Unity/Assets/Lua.Unity/Runtime/UnityStandardIO.cs
@@ -1,7 +1,5 @@
1
using Lua.IO;
2
using System;
3
-using System.Buffers.Text;
4
-using System.IO;
5
using System.Text;
6
using System.Threading;
7
using System.Threading.Tasks;
@@ -27,7 +25,7 @@ public UnityStandardIO(ILuaStream input = null)
27
25
public ILuaStream Error { get; } = new DebugLogStream(true);
28
26
}
29
30
- public class DummyInputStream : ILuaStream
+ internal class DummyInputStream : ILuaStream
31
{
32
public bool IsOpen { get; } = true;
33
public LuaFileOpenMode Mode => LuaFileOpenMode.Read;
0 commit comments