Search algorithms for the 8-puzzle solution
include
GameAction.hpp
Go to the documentation of this file.
1
/**
2
* @author Douglas De Rizzo Meneghetti (douglasrizzom@gmail.com)
3
* @date 2017-6-22
4
* @brief Actions allowed in the 8-puzzle and its variants.
5
*/
6
7
#
ifndef
SEARCH_GAMEACTION_HPP
8
#
define
SEARCH_GAMEACTION_HPP
9
10
//! Actions allowed in the 8-puzzle and its variants.
11
enum
GameAction
{
LEFT
= 1,
RIGHT
= 2,
UP
= 3,
DOWN
= 4 };
12
13
#
endif
// ifndef SEARCH_GAMEACTION_HPP
GameAction
GameAction
Actions allowed in the 8-puzzle and its variants.
Definition:
GameAction.hpp:11
DOWN
Definition:
GameAction.hpp:11
UP
Definition:
GameAction.hpp:11
LEFT
Definition:
GameAction.hpp:11
RIGHT
Definition:
GameAction.hpp:11
Generated by
1.8.13