working on chat features

This commit is contained in:
recroom2016
2022-02-22 23:39:22 -05:00
parent 3f8ff4a98b
commit c42d15d3aa
6 changed files with 74 additions and 4 deletions

30
OpenRecNet.cs Normal file
View File

@@ -0,0 +1,30 @@
using System;
using System.Net;
using System.IO;
namespace start
{
public class OpenRecNet
{
public OpenRecNet()
{
}
public static void RecNet()
{
Console.ForegroundColor = ConsoleColor.Blue;
Console.Clear();
goto ChatStart;
ChatStart:
Console.WriteLine("Welcome to OpenRecNet!");
Console.WriteLine("You are logged in as " + File.ReadAllText("SaveData\\Profile\\username.txt"));
Console.WriteLine("Your UserID is " + File.ReadAllText("SaveData\\Profile\\userid.txt"));
Console.WriteLine("In the future, show this message?");
Console.WriteLine("1) Yes" + Environment.NewLine + "1) No");
}
}
}