blob: e330371337dc401d518d9cc85ae41a35817fcb2b [file] [log] [blame] [raw]
package li.cil.oc.server.components
trait IComponent {
private var _id = 0
def id: Int = _id
def id_=(value: Int) = _id = value
}