-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# ChaosMod TwitchChatVotingProxy Project | ||
|
||
This is where the source code for the voting process resides in. Contrary to the name it supports multiple platforms now: Twitch and Discord. | ||
|
||
## Building | ||
|
||
Either through Visual Studio or using the `dotnet` CLI tool (`dotnet build` or `dotnet publish`). | ||
|
||
## Coding conventions | ||
|
||
- This project provides a custom .editorconfig file. Please make sure to format your source code before contributing, there should be support for just about every IDE / editor out there - either officially or using an extension. Alternatively you can run `dotnet format`. | ||
- Always use brackets for if, for and while expressions. | ||
- Naming: | ||
- Private member variables: `m_Foo` | ||
- Static global variables specific to file: `ms_Foo` | ||
- Global member: `Foo` |