]> Dogcows Code - chaz/carfire/blob - Project06/CS 3505 Project 06/CS 3505 Project 06/ILobby.cs
Now uses network to update character position
[chaz/carfire] / Project06 / CS 3505 Project 06 / CS 3505 Project 06 / ILobby.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using Microsoft.Xna.Framework;
6 using Microsoft.Xna.Framework.Graphics;
7 using Microsoft.Xna.Framework.Input;
8 using Microsoft.Xna.Framework.Content;
9
10 namespace CS_3505_Project_06
11 {
12 public interface ILobby
13 {
14 void LoadContent(ContentManager contentManager, GraphicsDeviceManager graphics);
15 void UnloadContent();
16 long Update(GameTime gameTime, NetworkGame networkGame);
17 long Draw(SpriteBatch spriteBatch);
18 }
19 }
This page took 0.035131 seconds and 4 git commands to generate.