FernAcular / StrongholdSiege

1 stars 0 forks source link

Decide on code style practices #26

Open salahusama opened 5 years ago

salahusama commented 5 years ago

We should decide on the code style we'll use to stay consistent. For example, do we want opening curly brackets on the same line or new line, commenting, debug messages, etc.

Example

public void myFunction() {
}

or

public void myFunction()
{
}
salahusama commented 5 years ago

It seems like StyleCop might be helpful for this.