blob: 4ec4dcf9214f15bf7e919f136baeaa0b51c05a3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using Impostor.Api.Events;
using Impostor.Api.Games;
using Impostor.Api.Innersloth;
namespace Impostor.Server.Events
{
public class GameEndedEvent : IGameEndedEvent
{
public GameEndedEvent(IGame game, GameOverReason gameOverReason)
{
Game = game;
GameOverReason = gameOverReason;
}
public IGame Game { get; }
public GameOverReason GameOverReason { get; }
}
}
|