Advertisement
Kingdaro

Minimal Class Implementation

May 2nd, 2013
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. function class(obj)
  2.   obj = obj or {}
  3.   obj.init = obj.init or function() end
  4.  
  5.   function obj:new(...)
  6.     local instance = setmetatable({__class = obj}, {__index = obj})
  7.     return instance, instance:init(...)
  8.   end
  9.  
  10.   function obj:extend(t)
  11.     t = t or {}
  12.     for k,v in pairs(obj) do
  13.       if not t[k] then
  14.         t[k] = v
  15.       end
  16.     end
  17.     return class(t)
  18.   end
  19.  
  20.   return setmetatable(obj, {__call = obj.new})
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement