cocos2dx-lua class语法糖要注意了
function class(classname, super) local superType = type(super) local cls --如果父类既不是函数也不是table则说明父类为空 if superType ~= "function" and superType ~= "table" then superType = nil super = nil end --如果父类的类型是函
转载
2014-08-20 14:53:55 ·
8270 阅读 ·
0 评论