mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
- Added moon support - Rewrote every class for readability - Rewrote Main class to simplify code (file planets now load on scene load)
24 lines
456 B
C#
24 lines
456 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Marshmallow.Utility
|
|
{
|
|
public class Logger
|
|
{
|
|
public static void Log(string text, LogType type)
|
|
{
|
|
Main.helper.Console.WriteLine(Enum.GetName(typeof(LogType), type) + " : " + text);
|
|
}
|
|
|
|
public enum LogType
|
|
{
|
|
Log,
|
|
Error,
|
|
Warning,
|
|
Todo
|
|
}
|
|
}
|
|
}
|