예제 #1
0
파일: Class1.cs 프로젝트: IDWMaster/3DAPI
 public override void Draw()
 {
     TextureOperation mtion = new TextureOperation(this,TextureOperationType.Render);
 }
예제 #2
0
파일: Class1.cs 프로젝트: IDWMaster/3DAPI
 public Texture2D(int width, int height)
 {
     _width = width;
     _height = height;
     TextureOperation mop = new TextureOperation(this, TextureOperationType.Load);
 }