| 12345678910111213141516171819202122232425262728293031323334 |
- {
- devices:[
- {
- id:"Alice",
- image: "imac",
- ports:1,
- x:0.25,
- y:0.5,
- player:true
- },
- {
- id:"Google",
- image: "server",
- ports:1,
- x:0.75,
- y:0.5,
- capacity:1
- }
- ],
- links:[
- {
- src:"Alice", srcport:0,
- dst:"Google", dstport:0
- }
- ],
- timeline:[],
- triggers:[
- {
- type:"flood",
- device:"Google",
- }
- ],
- nextLevel:9
- }
|