Jewel-mmo開発日記

RubyでMMORPGを作る過程を記録する日記。 Yokohama.rb 発起人。
2006-03-20

オブジェクト

あとで書く。

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);