Skip to content

Commit

Permalink
TwitchChatVotingProxy: Add README
Browse files Browse the repository at this point in the history
  • Loading branch information
pongo1231 committed Feb 12, 2024
1 parent c8181de commit b984cca
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions TwitchChatVotingProxy/README.md
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`

0 comments on commit b984cca

Please sign in to comment.