blob: 3e3a4eace9e1e562b8766b94e9739023465701df [file] [log] [blame] [raw]
package li.cil.oc.server.component
import li.cil.oc.api.Network
import li.cil.oc.api.network.Visibility
import li.cil.oc.common.component.ManagedComponent
// Note-to-self: this has a component to allow the robot telling it has the
// upgrade.
class UpgradeAngel extends ManagedComponent {
val node = Network.newNode(this, Visibility.Network).
withComponent("angel").
create()
}