blob: 4e8be7f7eb06e9530041c3b67bdd0d1ddf18cc05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef MOVES_H
#define MOVES_H
#include "alg.h"
#include "cube.h"
#include "env.h"
void apply_alg(Alg *alg, Cube *cube);
void apply_move(Move m, Cube *cube);
void apply_move_centers(Move m, Cube *cube);
void apply_move_corners(Move m, Cube *cube);
void apply_move_edges(Move m, Cube *cube);
Alg * cleanup(Alg *alg);
void init_moves();
#endif
|