wire is back! but not the render

This commit is contained in:
minjaesong
2021-07-28 14:19:50 +09:00
parent 8cb3fc2d33
commit 5aacbe84b8
21 changed files with 228 additions and 107 deletions

View File

@@ -0,0 +1,19 @@
package net.torvald.terrarum.blockproperties
import net.torvald.terrarum.gameitem.ItemID
/**
* Created by minjaesong on 2021-07-28.
*/
class WireProp {
var id: ItemID = ""
var nameKey: String = ""
var renderClass: String = ""
var accepts: String = ""
var inputCount: Int = 0
var inputType: String = ""
var outputType: String = ""
}