Esempio n. 1
0
 public override void Draw()
 {
     TextureOperation mtion = new TextureOperation(this,TextureOperationType.Render);
 }
Esempio n. 2
0
 public Texture2D(int width, int height)
 {
     _width = width;
     _height = height;
     TextureOperation mop = new TextureOperation(this, TextureOperationType.Load);
 }