aboutsummaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
blob: 8dd07d600d2204115e199fe8d9ef33adfc2d827c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Contributing to ShiftOS

## Reporting Bugs / Suggesting Enhancements

### Issue Template

#### What you expected to happen

#### What actually happened

#### Steps To Reproduce

    # What you expected to happen

    # What actually happened

    # Steps To Reproduce
    
### Suggestion Template

#### What should be added to the game/api

#### Why it should be added

    # What should be added to the game/api
    
    # Why it should be added

## Pull Requests

Follow our code style

    PublicVariableNames privateVariableNames CONSTANT_VARIABLE_NAMES
    PublicMethodNames privateMethodNames
    ClassNamesLikeThis
    {
        public Type VariableName;
        
        public void BracketsOnNewLines()
        {
            var variableName;
        }
    }

Insert licenses at the top of ALL `.cs` files