public DrawingSurfaceContentProvider(DrawingSurfaceUpdateHandler drawingSurfaceUpdateHandler, Microsoft.Xna.Framework.Game game)
 {
     _drawingSurfaceUpdateHandler = drawingSurfaceUpdateHandler;
     _surfaceUpdateHandler        = new SurfaceUpdateHandler(game);
 }
 public DrawingSurfaceContentProvider(DrawingSurfaceUpdateHandler drawingSurfaceUpdateHandler, Microsoft.Xna.Framework.Game game)
 {
     _drawingSurfaceUpdateHandler = drawingSurfaceUpdateHandler;
     _surfaceUpdateHandler = new SurfaceUpdateHandler(game);
 }
示例#3
0
 public DrawingSurfaceBackgroundContentProvider(T game)
 {
     _surfaceUpdateHandler = new SurfaceUpdateHandler(game);
 }