예제 #1
0
파일: Program.cs 프로젝트: seanmcelroy/moo
        private static async Task ReadInScriptFile(string path, PlayerConnection connection)
        {
            var lines = await System.IO.File.ReadAllLinesAsync(path);

            connection.ReceiveInputUnattended(lines);
        }