summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Api/Events/Game/IGameEndedEvent.cs
blob: d8ae159df644e977f05eba9a3950329395cf94cf (plain)
1
2
3
4
5
6
7
8
9
using Impostor.Api.Innersloth;

namespace Impostor.Api.Events
{
    public interface IGameEndedEvent : IGameEvent
    {
        public GameOverReason GameOverReason { get; }
    }
}