├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── README.md ├── README_ES.md └── workflows │ ├── core-build.yml │ └── core_codestyle.yml ├── .gitignore ├── LICENSE ├── apps ├── .gitkeep └── ci │ ├── .gitkeep │ └── ci-codestyle.sh ├── conf ├── .gitkeep └── my_custom.conf.dist ├── data ├── .gitkeep └── sql │ ├── db-auth │ └── .gitkeep │ ├── db-characters │ └── .gitkeep │ └── db-world │ ├── .gitkeep │ └── skeleton_module_acore_string.sql ├── include.sh ├── pull_request_template.md └── src ├── MP_loader.cpp └── MyPlayer.cpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/README_ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/.github/README_ES.md -------------------------------------------------------------------------------- /.github/workflows/core-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/.github/workflows/core-build.yml -------------------------------------------------------------------------------- /.github/workflows/core_codestyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/.github/workflows/core_codestyle.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/LICENSE -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/ci/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/ci/ci-codestyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/apps/ci/ci-codestyle.sh -------------------------------------------------------------------------------- /conf/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conf/my_custom.conf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/conf/my_custom.conf.dist -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/sql/db-auth/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/sql/db-characters/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/sql/db-world/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/sql/db-world/skeleton_module_acore_string.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/data/sql/db-world/skeleton_module_acore_string.sql -------------------------------------------------------------------------------- /include.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /src/MP_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/src/MP_loader.cpp -------------------------------------------------------------------------------- /src/MyPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/skeleton-module/HEAD/src/MyPlayer.cpp --------------------------------------------------------------------------------