rolandoam / shinycocos

ruby bindings for cocos2d-iphone (a.k.a.: i want to program my iphone game in ruby)
http://funkaster.github.com/shinycocos
Other
89 stars 4 forks source link

remove Klass.*_with_* creators #5

Closed rolandoam closed 15 years ago

rolandoam commented 15 years ago

remove all the class methods that create a new instance that are not "new". This is not very ruby-style and should be changed to a new creator with options, for instance:

Sprite.sprite_with_file("file.png")

should be:

Sprite.new(:file => "file.png")

or just

Sprite.new("file.png")
rolandoam commented 15 years ago

Changed: