using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Content; namespace CS_3505_Project_06 { public interface ILobby { void LoadContent(ContentManager contentManager, GraphicsDeviceManager graphics); void UnloadContent(); long Update(GameTime gameTime, NetworkGame networkGame); long Draw(SpriteBatch spriteBatch); } }