あとで書く。
Ruby
image = Image.new image.x = 100 image.y = 50 image.file_name = "sample.bmp" image.draw
C
Image image; image.x = 100; image.y = 50; strcpy(image.file_name, "sample.bmp"); image_draw(&image);