summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Api/Events/Game/IGameEvent.cs
blob: c9ae5790d7877590ee041161929a1490ee0e5d88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using Impostor.Api.Games;

namespace Impostor.Api.Events
{
    public interface IGameEvent : IEvent
    {
        /// <summary>
        ///     Gets the <see cref="IGame"/> this event belongs to.
        /// </summary>
        IGame Game { get; }
    }
}