1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.vectomatic.svg.edu.client.maze;
19
20 import org.vectomatic.dom.svg.ui.SVGResource;
21
22 import com.google.gwt.core.client.GWT;
23 import com.google.gwt.resources.client.ClientBundle;
24 import com.google.gwt.resources.client.TextResource;
25
26 public interface MazeBundle extends ClientBundle {
27 public static final MazeBundle INSTANCE = GWT.create(MazeBundle.class);
28 @Source("maze.css")
29 public MazeCss getCss();
30 @Source("mazeLayout.css")
31 public MazeLayoutCss mazeLayout();
32 @Source("mazeLayoutLandscape.css")
33 public MazeLayoutCss mazeLayoutLandscape();
34 @Source("mazeLayoutPortrait.css")
35 public MazeLayoutCss mazeLayoutPortrait();
36 @Source("levels.txt")
37 public TextResource levels();
38 @Source("direction_a_suivre_4_yve_01.svg")
39 public SVGResource up();
40 @Source("direction_a_suivre_1_yve_01.svg")
41 public SVGResource down();
42 @Source("direction_a_suivre_2_yve_01.svg")
43 public SVGResource left();
44 @Source("direction_a_suivre_3_yve_01.svg")
45 public SVGResource right();
46 @Source("eraser.svg")
47 public SVGResource back();
48 @Source("salvagente_architetto_fr_01.svg")
49 public SVGResource help();
50 @Source("computer.svg")
51 public SVGResource compute();
52 }