14 lines
283 B
Plaintext
14 lines
283 B
Plaintext
|
|
box TestChild : P2PBox {
|
|
constructor(nodeId, world) {
|
|
from P2PBox.constructor(nodeId, world)
|
|
me.test = "hello"
|
|
}
|
|
|
|
override send(intent, data, target) {
|
|
print("Child sending: " + intent)
|
|
from P2PBox.send(intent, data, target)
|
|
}
|
|
}
|
|
|