]> Dogcows Code - chaz/carfire/blob - CarFire/CarFire/CarFire/IScreenManager.cs
git-svn-id: https://bd85.net/svn/cs3505_group@168 92bb83a3-7c8f-8a45-bc97-515c4e399668
[chaz/carfire] / CarFire / CarFire / CarFire / IScreenManager.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.Content;
7 using Microsoft.Xna.Framework.Graphics;
8 using Microsoft.Xna.Framework.Input;
9
10 namespace CarFire
11 {
12 public interface IScreenManager
13 {
14 void LoadContent(ContentManager contentManager, GraphicsDeviceManager graphics);
15 void UnloadContent();
16 long Update(GameTime gameTime, NetworkManager networkGame);
17 long Draw(SpriteBatch spriteBatch);
18 }
19 }
This page took 0.032462 seconds and 4 git commands to generate.