1 2 3 4 5 6 7 8 9 10 11 12 13 14
#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); Alg * cleanup(Alg *alg); void init_moves(); #endif
Generated with cgit - Back to sebastiano.tronto.net