blob: ef45f1dbe19c2aa1ff462934c08d9c6e74dce01f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using Impostor.Api.Games;
namespace Impostor.Api.Events
{
/// <summary>
/// Called whenever a new <see cref="IGame"/> is created.
/// </summary>
public interface IGameCreatedEvent : IGameEvent
{
}
}
|