Inital Commit

This commit is contained in:
SilicaAndPina 2020-09-29 14:33:36 +13:00
parent fc2b0206d6
commit e8e0a0a519
145 changed files with 68819 additions and 0 deletions

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Horse_Isle_Server
{
class Logger
{
public static void DebugPrint(string text)
{
if (ConfigReader.Debug)
Console.WriteLine("[DEBUG] " + text);
}
public static void ErrorPrint(string text)
{
Console.WriteLine("[ERROR] " + text);
}
}
}