└── .github └── ISSUE_TEMPLATE ├── bug_report.md └── feature_request.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help reproduce and fix the issue 4 | --- 5 | 6 | #### Description: 7 | 8 | Expected behavior: 9 | 10 | Actual behavior: 11 | 12 | 14 | 15 | #### Game version: 16 | 17 | 18 | 19 | #### Steps to reproduce: 20 | 21 | 26 | 27 | #### Additional information: 28 | 29 | 30 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Request a feature for the patch 4 | --- 5 | 6 | #### Description: 7 | 8 | 9 | 10 | #### Commit hash: 11 | 12 | 13 | 14 | #### Why is it good for the game?: 15 | --------------------------------------------------------------------------------