namespace Robust.Server.GameStates
{
///
/// Engine service that provides creating and dispatching of game states.
///
public interface IServerGameStateManager
{
///
/// One time initialization of the service.
///
void Initialize();
///
/// Create and dispatch game states to all connected sessions.
///
void SendGameStateUpdate();
ushort TransformNetId { get; set; }
}
}