summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Api/Net/Inner/IGameNet.cs
blob: 933a4de684e04b89506c8caa820fed977770c1d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Impostor.Api.Net.Inner.Objects;

namespace Impostor.Api.Net.Inner
{
    /// <summary>
    ///     Holds all data that is serialized over the network through GameData packets.
    /// </summary>
    public interface IGameNet
    {
        IInnerLobbyBehaviour LobbyBehaviour { get; }

        IInnerGameData GameData { get; }

        IInnerVoteBanSystem VoteBan { get; }

        IInnerShipStatus ShipStatus { get; }
    }
}