18 lines
273 B
Plaintext
18 lines
273 B
Plaintext
|
include "update.bzz"
|
||
|
|
||
|
# Executed once at init time.
|
||
|
function init() {
|
||
|
}
|
||
|
|
||
|
# Executed at each time step.
|
||
|
function step() {
|
||
|
}
|
||
|
|
||
|
# Executed once when the robot (or the simulator) is reset.
|
||
|
function reset() {
|
||
|
}
|
||
|
|
||
|
# Executed once at the end of experiment.
|
||
|
function destroy() {
|
||
|
}
|