예제 #1
0
 public PImage(Bitmap image)
 {
     fast      = image;
     textureID = ContentPipe.loadTexture(fast);
     isLoaded  = true;
 }
예제 #2
0
 public PImage(string pathName)
 {
     fast      = new Bitmap(pathName);
     textureID = ContentPipe.loadTexture(fast);
     isLoaded  = true;
 }