Added readme to modules and plugins folders

This commit is contained in:
2024-07-22 01:25:15 +03:00
parent 66fbaf3e26
commit 4a08a25167
3 changed files with 15 additions and 0 deletions

3
Modules/README.md Normal file
View File

@@ -0,0 +1,3 @@
# Modules
This directory contains the modules that are used in the project. Each module is a separate directory that contains the following files:
1. [LoggerModule](./Modules/LoggerModule) - a module that provides logging functionality for the bot.

6
Plugins/README.md Normal file
View File

@@ -0,0 +1,6 @@
# Plugins
Here is a list of plugins that are available for the bot. You can find the source code for each plugin in the `Plugins` folder.
1. [Leveling System](./Plugins/LevelingSystem) - a plugin that allows users to level up by sending messages.
2. [Music Player](./Plugins/MusicPlayer) - a plugin that allows users to play music in a voice channel.
3. [CppWrapper](./Plugins/CppWrapper) - a plugin that allows users to run C++ code. This is a HELPER plugin and has no use on its own.
4. [DiscordBotUI](./Plugins/DiscordBotUI) - a plugin that allows users to interact with the bot using a graphical user interface.

View File

@@ -7,8 +7,14 @@ EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DiscordBotCore", "DiscordBotCore\DiscordBotCore.csproj", "{5A99BFC3-EB39-4AEF-8D61-3CE22D013B02}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{5CF9AD7B-6BF0-4035-835F-722F989C01E1}"
ProjectSection(SolutionItems) = preProject
Plugins\README.md = Plugins\README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Modules", "Modules", "{EA4FA308-7B2C-458E-8485-8747D745DD59}"
ProjectSection(SolutionItems) = preProject
Modules\README.md = Modules\README.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CppWrapper", "Plugins\CppWrapper\CppWrapper.csproj", "{B21FC858-C397-4B0B-BFED-218EFA28E3E1}"
EndProject