├── .github └── ISSUE_TEMPLATE │ └── bug-report.md └── README.md /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Additional context** 27 | Add any other context about the problem here. 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NPC Editor 2 | 3 | This repository is used to handle issues and publish the latest releases of the editor. 4 | 5 | # Issues 6 | 7 | Feel free to create an issues for problems you encounter on [Issues](https://github.com/rayofhope-dev/npc-editor/issues) page. 8 | 9 | # Download 10 | You can find all available versions of the application in the [Releases](https://github.com/rayofhope-dev/npc-editor/releases) tab. 11 | 12 | # Authors 13 | Powered by Ray of Hope team. 14 | 15 | - Official [VK](https://vk.com/roh_online) page 16 | - Official [Discord](https://discordapp.com/invite/rffsfku)-server. Join discussions about editor in `#npc-editor` channel 17 | - Page on [Patreon](https://www.patreon.com/roh_online) 18 | - Our [site](https://roh-online.com/) 19 | - [Carreers](https://roh-online.com/join) 20 | 21 | Join us! 22 | --------------------------------------------------------------------------------