Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | /* |
||
27 | public interface InteractiveObjectData extends CellLayerData { |
||
28 | /** |
||
29 | * Rotation is not supported by the layerObject2 |
||
30 | */ |
||
31 | @Pure |
||
32 | @Override |
||
33 | public default int rotation() { |
||
34 | 1 | return 0; |
|
35 | } |
||
36 | |||
37 | /** |
||
38 | * Does the object is interactive ? |
||
39 | * |
||
40 | * @return true if the layer contains an interactive object |
||
41 | */ |
||
42 | @Pure |
||
43 | public boolean interactive(); |
||
44 | } |
||
45 |