TODO:もう少し詳細を記載
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
newInterface = {} | |
setmetatable(newInterface, newInterface) | |
newInterface.__index = MOAIProp2D.getInterfaceTable() | |
newInterface.test1 = 123 | |
newInterface.test2 = "Hello" | |
newInterface.test3 = function() print("Hello") end | |
prop = MOAIProp2D.new () | |
prop:setInterface(newInterface) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.kohsuke.github.* | |
buildscript { | |
repositories { | |
jcenter() | |
} | |
dependencies { | |
classpath 'org.kohsuke:github-api:1.95' | |
} | |
} |