Exemplo n.º 1
0
 /// <summary>
 /// A Constructor
 /// </summary>
 /// <param name="graphics">XNA GraphicsDeviceManager</param>
 /// <param name="Image">Image On What The Effect Will Be Applied</param>
 public HidingLine(GraphicsDeviceManager graphics, Graphics.Image Image)
 {
     this.graphics = graphics;
     hiding        = new Hiding(graphics, Image);
 }
Exemplo n.º 2
0
 /// <summary>
 /// A Constructor
 /// </summary>
 /// <param name="graphics">XNA GraphicsDeviceManager</param>
 public HidingLine(GraphicsDeviceManager graphics)
 {
     this.graphics = graphics;
     hiding        = new Hiding(graphics);
 }