mirror of
https://github.com/YouHaveTrouble/YHTMod.git
synced 2026-05-12 05:56:56 +00:00
16 lines
227 B
C#
16 lines
227 B
C#
using Terraria.ModLoader;
|
|
|
|
namespace YHTMod;
|
|
|
|
public class YHTMod : Mod {
|
|
private static YHTMod _mod;
|
|
|
|
public YHTMod() {
|
|
_mod = this;
|
|
}
|
|
|
|
public static YHTMod GetInstance() {
|
|
return _mod;
|
|
}
|
|
}
|