cocos2d-x lua中class的定義

在lua中要實現對類的定義通常都是經過metatable來作到的。。例如:python Fjs = {} function Fjs:new(name) local out = {} setmetatable(out, self) self.__index = self out.name = name return out end function Fjs:sayHello() p
相關文章
相關標籤/搜索