summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Api/Innersloth/GameOverReason.cs
blob: 6a95d3747bb7c3d3a8963983c7336d15fbea63d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Impostor.Api.Innersloth
{
    public enum GameOverReason : byte
    {
        HumansByVote = 0,
        HumansByTask = 1,
        ImpostorByVote = 2,
        ImpostorByKill = 3,
        ImpostorBySabotage = 4,
        
        // Unused (?)
        ImpostorDisconnect = 5,
        HumansDisconnect = 6,
    }
}