I had hoped to create a nice helper with named parameters for creating sprites, so that you could do something like this:
# before, doesn't really mean anything to me [10, 10, 100, 100, [0, 0, 0]] # after, much nicer! sprite_helper(x: 10, y: 10, width: 100, height: 100, color: [0, 0, 0])
But unfortunately mruby doesn't support named parameters :( https://github.com/mruby/mruby/issues/363
Anyone have any other ideas or want to implement it in mruby for me?