Advertisement
fosterboy123

Screen.cs

Aug 6th, 2012
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  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.  
  8. namespace Ze_shooter.Screen
  9. {
  10.     class Screen
  11.     {
  12.         protected EventHandler screenEvent;
  13.  
  14.         public Screen(EventHandler screenEvent)
  15.         {
  16.             this.screenEvent = screenEvent;
  17.         }
  18.  
  19.         public virtual void Update(GameTime gameTime)
  20.         {
  21.            
  22.         }
  23.  
  24.         public virtual void Draw(SpriteBatch spriteBatch)
  25.         {
  26.            
  27.         }
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement