mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2025-01-18 10:26:15 +01:00
Rename Turn into TurnData (step 1)
This commit is contained in:
parent
4acc731b17
commit
fa345a9f7b
14 changed files with 14 additions and 14 deletions
|
@ -32,7 +32,7 @@ libgame_a_SOURCES= \
|
|||
move.cpp move.h \
|
||||
results.cpp results.h \
|
||||
bag.cpp bag.h \
|
||||
turn.cpp turn.h \
|
||||
turn_data.cpp turn_data.h \
|
||||
history.cpp history.h \
|
||||
player.cpp player.h \
|
||||
player_event_cmd.cpp player_event_cmd.h \
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
#include "game_rack_cmd.h"
|
||||
#include "ai_player.h"
|
||||
#include "settings.h"
|
||||
#include "turn.h"
|
||||
#include "turn_data.h"
|
||||
#include "encoding.h"
|
||||
|
||||
#include "debug.h"
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#include "results.h"
|
||||
#include "player.h"
|
||||
#include "game.h"
|
||||
#include "turn.h"
|
||||
#include "turn_data.h"
|
||||
#include "encoding.h"
|
||||
#include "game_exception.h"
|
||||
#include "turn_cmd.h"
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "game_params.h"
|
||||
#include "game.h"
|
||||
#include "rack.h"
|
||||
#include "turn.h"
|
||||
#include "turn_data.h"
|
||||
|
||||
|
||||
INIT_LOGGER(game, GameMoveCmd);
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "rack.h"
|
||||
#include "pldrack.h"
|
||||
#include "move.h"
|
||||
#include "turn.h"
|
||||
#include "turn_data.h"
|
||||
#include "history.h"
|
||||
#include "encoding.h"
|
||||
#include "debug.h"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "results.h"
|
||||
#include "board.h"
|
||||
#include "player.h"
|
||||
#include "turn.h"
|
||||
#include "turn_data.h"
|
||||
#include "history.h"
|
||||
#include "encoding.h"
|
||||
#include "settings.h"
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include <sstream>
|
||||
|
||||
#include "turn.h"
|
||||
#include "turn_data.h"
|
||||
|
||||
|
||||
INIT_LOGGER(game, Turn);
|
|
@ -96,8 +96,8 @@ game/settings.cpp
|
|||
game/settings.h
|
||||
game/training.cpp
|
||||
game/training.h
|
||||
game/turn.cpp
|
||||
game/turn.h
|
||||
game/turn_data.cpp
|
||||
game/turn_data.h
|
||||
game/turn_cmd.cpp
|
||||
game/turn_cmd.h
|
||||
game/xml_reader.cpp
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
#include "public_game.h"
|
||||
#include "player.h"
|
||||
#include "history.h"
|
||||
#include "turn.h"
|
||||
#include "turn_data.h"
|
||||
#include "move.h"
|
||||
#include "game_params.h"
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
#include "public_game.h"
|
||||
#include "player.h"
|
||||
#include "history.h"
|
||||
#include "turn.h"
|
||||
#include "turn_data.h"
|
||||
#include "move.h"
|
||||
#include "debug.h"
|
||||
#include "round.h"
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include "public_game.h"
|
||||
#include "player.h"
|
||||
#include "history.h"
|
||||
#include "turn.h"
|
||||
#include "turn_data.h"
|
||||
#include "game_params.h"
|
||||
#include "settings.h"
|
||||
#include "debug.h"
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
#include "player.h"
|
||||
#include "encoding.h"
|
||||
#include "history.h"
|
||||
#include "turn.h"
|
||||
#include "turn_data.h"
|
||||
#include "move.h"
|
||||
#include "round.h"
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
#include "results.h"
|
||||
#include "player.h"
|
||||
#include "history.h"
|
||||
#include "turn.h"
|
||||
#include "turn_data.h"
|
||||
#include "game_exception.h"
|
||||
#include "encoding.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue