X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=CarFire%2FCarFire%2FCarFire%2FIScreenManager.cs;fp=CarFire%2FCarFire%2FCarFire%2FIScreenManager.cs;h=1b15e20afd5ac0a23d0202725b76c1f3e1717ffa;hb=f58af70a5768c1d99ca535fb214565ba226f3f0f;hp=0000000000000000000000000000000000000000;hpb=c255cb9589044501e3b16774eb96c9c803f523cc;p=chaz%2Fcarfire diff --git a/CarFire/CarFire/CarFire/IScreenManager.cs b/CarFire/CarFire/CarFire/IScreenManager.cs new file mode 100644 index 0000000..1b15e20 --- /dev/null +++ b/CarFire/CarFire/CarFire/IScreenManager.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework.Content; +using Microsoft.Xna.Framework.Graphics; +using Microsoft.Xna.Framework.Input; + +namespace CarFire +{ + public interface IScreenManager + { + void LoadContent(ContentManager contentManager, GraphicsDeviceManager graphics); + void UnloadContent(); + long Update(GameTime gameTime, NetworkManager networkGame); + long Draw(SpriteBatch spriteBatch); + } +}