movesSkewb property

List<String> movesSkewb
getter/setter pair

Lista estática que contiene las caras del cubo Skewb. Las caras que se pueden mover en este cubo son: "U" (Up), "R" (Right), "B" (Back), "L" (Left).

Implementation

static List<String> movesSkewb = [
  "U",
  "R",
  "B",
  "L",
];