T_MSCLoader_ModConsole - piotrulos/MSCModLoader GitHub Wiki
MSCLoader console related functions.
Namespace: MSCLoader
Assembly: MSCLoader (in MSCLoader.dll) Version: 1.3.3.356
C#
public class ModConsole : <a href="T_MSCLoader_Mod">Mod</a>View Source
| Inheritance | Object → Mod → ModConsole |
| Error | Print an error to the console. |
| Log(Object) | Same as ModConsole.Print(obj); |
| Log(String) | Same as ModConsole.Print(string); |
| Log(IList, Boolean) | Logs a list (and optionally its elements) to the ModConsole and output_log.txt |
| LogError | Same as ModConsole.Error(string); |
| LogWarning | Same as ModConsole.Warning(string); |
| Print(Object) | Prints anything to console. |
| Print(String) | Print a message to console. |
| Warning | Print an warning to the console. |