├── .gitignore ├── LICENSE ├── Main.cs ├── Managers.cs ├── Nameplate.cs ├── NameplateStats.csproj ├── NameplateStats.sln ├── NameplateStatsManager.cs ├── ObjectListener.cs ├── Patches.cs ├── Prefs.cs ├── Properties └── AssemblyInfo.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiokuu/NameplateStats/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiokuu/NameplateStats/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiokuu/NameplateStats/HEAD/Main.cs -------------------------------------------------------------------------------- /Managers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiokuu/NameplateStats/HEAD/Managers.cs -------------------------------------------------------------------------------- /Nameplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiokuu/NameplateStats/HEAD/Nameplate.cs -------------------------------------------------------------------------------- /NameplateStats.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiokuu/NameplateStats/HEAD/NameplateStats.csproj -------------------------------------------------------------------------------- /NameplateStats.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiokuu/NameplateStats/HEAD/NameplateStats.sln -------------------------------------------------------------------------------- /NameplateStatsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiokuu/NameplateStats/HEAD/NameplateStatsManager.cs -------------------------------------------------------------------------------- /ObjectListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiokuu/NameplateStats/HEAD/ObjectListener.cs -------------------------------------------------------------------------------- /Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiokuu/NameplateStats/HEAD/Patches.cs -------------------------------------------------------------------------------- /Prefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiokuu/NameplateStats/HEAD/Prefs.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiokuu/NameplateStats/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiokuu/NameplateStats/HEAD/README.md --------------------------------------------------------------------------------