Adds skills and how to add them to the sheet

This commit is contained in:
mstein
2022-06-09 23:50:19 +02:00
parent 403109921c
commit 0f06d4020b
16 changed files with 478 additions and 162 deletions
+3 -3
View File
@@ -16,15 +16,15 @@ class Logger {
console.log(time.str + moduleName.str + text.str, ...time.params.concat(moduleName.params, text.params));
}
static Err(str: string): void {
static err(str: string): void {
Logger.log(str, Color("orange"));
}
static Warn(str: string): void {
static warn(str: string): void {
Logger.log(str, Color("yellow"));
}
static Ok(str: string): void {
static ok(str: string): void {
Logger.log(str, Color("green"));
}
}