Beispiel #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="graphics">XNA GraphicsDeviceManager</param>
 /// <param name="Image">The Image On What The Effect Will Be Applied</param>
 public BreakingSquare(GraphicsDeviceManager graphics, Graphics.Image Image)
 {
     this.graphics = graphics;
     breaking      = new Breaking(graphics, Image);
 }
Beispiel #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="graphics">XNA GraphicsDeviceManager</param>
 public BreakingSquare(GraphicsDeviceManager graphics)
 {
     this.graphics = graphics;
     breaking      = new Breaking(graphics);
 }