├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── CHANGELOG ├── CODEOWNERS ├── LICENSE.md ├── README.md └── src ├── K4-DamageInfo.cs ├── K4-DamageInfo.csproj └── lang ├── cn.json.outdated ├── en.json └── pl.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-DamageInfo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-DamageInfo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-DamageInfo/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-DamageInfo/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-DamageInfo/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-DamageInfo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-DamageInfo/HEAD/README.md -------------------------------------------------------------------------------- /src/K4-DamageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-DamageInfo/HEAD/src/K4-DamageInfo.cs -------------------------------------------------------------------------------- /src/K4-DamageInfo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-DamageInfo/HEAD/src/K4-DamageInfo.csproj -------------------------------------------------------------------------------- /src/lang/cn.json.outdated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-DamageInfo/HEAD/src/lang/cn.json.outdated -------------------------------------------------------------------------------- /src/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-DamageInfo/HEAD/src/lang/en.json -------------------------------------------------------------------------------- /src/lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-DamageInfo/HEAD/src/lang/pl.json --------------------------------------------------------------------------------