Add path specification for movement animations.
[kaya.git] / lib / factory.rb
blob0ffbabc81ef7505fc38dfbe628784cc4f2169415
1 class Factory
2   def initialize(&blk)
3     @blk = blk
4   end
5   
6   def new(*args)
7     @blk[*args]
8   end
9 end