This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
vogue/test/world.v

18 lines
281 B
V

link[] places;
link place;
link character;
restore {
if(this.places.empty) {
for(let i = 0; i < 3; i ++) {
const place = create('places.forest', {
world: this
});
this.places.push(place);
}
}
for(const place of this.places) {
console.log(place.ping());
}
}