forked from openkylin/bovo
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
/*******************************************************************
|
|
*
|
|
* Copyright 2007 Aron Boström <c02ab@efd.lth.se>
|
|
*
|
|
* Bovo is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* Bovo is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Bovo; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*
|
|
********************************************************************/
|
|
|
|
#include "square.h"
|
|
|
|
/** @file file implementing the Square class */
|
|
|
|
/** namespace for game engine */
|
|
namespace bovo {
|
|
|
|
Square::Square() : m_player(No) {
|
|
}
|
|
|
|
Player Square::player() const {
|
|
return m_player;
|
|
}
|
|
|
|
bool Square::empty() const {
|
|
return m_player == No;
|
|
}
|
|
|
|
void Square::setPlayer(Player player) {
|
|
m_player = player;
|
|
}
|
|
|
|
} /* namespace bovo */
|