Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.23 KB | None | 0 0
  1. class Game_Actor
  2.  
  3.   attr_accessor :attributes
  4.  
  5.   alias attribute_init initialize # Can't remember if you need args here
  6.   def initialize # Can't remember if you need args here
  7.     @attributes = []
  8.     attribute_init() # args?
  9.   end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement