Exemple #1
0
 public Rule(
     Playfield<CharacterElement> p,
     IntegerElement x,
     IntegerElement y,
     IntegerElement width,
     CharacterElement wildcard) {
   super(p, x, y, width, width.divide(TWO));
   this.width = width;
   this.height = width.divide(TWO);
   this.wildcard = wildcard;
 }