summaryrefslogtreecommitdiff
path: root/src/examples/basic2.edc
blob: e60e2685ec0f2e2032973a9ab056bf23e4e40ae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
collections {
   group {
      name: "image_group";
      max: 500 500;
      min: 50 50;

     images{
		image: "bubble.png" COMP;
     }

    parts{
          	part{
                   name: "part_image";
                   type: IMAGE;
                   description{
                       image{
				normal: "bubble.png";
                       }
                   }
		}
    }

   }
}