adapt ooga booga C# code style

This commit is contained in:
2025-12-22 17:59:47 +01:00
parent ee06338f22
commit 50d7f8b0d2
11 changed files with 69 additions and 51 deletions
+3 -3
View File
@@ -2,13 +2,13 @@ using Terraria.ModLoader;
namespace YHTMod {
public class YHTMod : Mod {
private static YHTMod mod;
private static YHTMod _mod;
public YHTMod() {
mod = this;
_mod = this;
}
public static YHTMod GetInstance() {
return mod;
return _mod;
}
}
}