diff --git a/BeefLibs/corlib/src/Console.bf b/BeefLibs/corlib/src/Console.bf index 41f651cf..41ddf1a1 100644 --- a/BeefLibs/corlib/src/Console.bf +++ b/BeefLibs/corlib/src/Console.bf @@ -142,6 +142,14 @@ namespace System return OpenStreamReader(.In, ref mIn); } } + + public static Result Read() => In.Read(); + + public static Result ReadLine(String strBuffer) => In.ReadLine(strBuffer); + + public static Task ReadLineAsync() => In.ReadLineAsync(); + + public static Result ReadToEnd(String outText) => In.ReadToEnd(outText); public static void Write(String line) {