Search algorithms for the 8-puzzle solution
Enumerations
GameAction.hpp File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Enumerations

enum  GameAction { LEFT = 1, RIGHT = 2, UP = 3, DOWN = 4 }
 Actions allowed in the 8-puzzle and its variants. More...
 

Enumeration Type Documentation

◆ GameAction

enum GameAction

Actions allowed in the 8-puzzle and its variants.

Author
Douglas De Rizzo Meneghetti (dougl.nosp@m.asri.nosp@m.zzom@.nosp@m.gmai.nosp@m.l.com)
Date
2017-6-22Actions allowed in the 8-puzzle and its variants.
Enumerator
LEFT 
RIGHT 
UP 
DOWN 

Definition at line 11 of file GameAction.hpp.

11 { LEFT = 1, RIGHT = 2, UP = 3, DOWN = 4 };