1 //
2 // Cross-platform free Puyo-Puyo clone.
3 // Copyright (C) 2006, 2007 Emma's Software
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 #if defined (HAVE_CONFIG_H)
20 #include <config.h>
21 #endif // HAVE_CONFIG_H
22 #include "Amoeba.h"
23 
24 using namespace Amoebax;
25 
26 ///
27 /// \brief Constructor.
28 ///
29 /// \param colour The amoeba's colour.
30 ///
Amoeba(Colour colour)31 Amoeba::Amoeba (Colour colour):
32     m_Colour (colour),
33     m_Dying (false),
34     m_State (StateNone),
35     m_Visible (true),
36     m_X (0),
37     m_Y (0)
38 {
39 }
40 
41 ///
42 /// \brief Destructor.
43 ///
~Amoeba(void)44 Amoeba::~Amoeba (void)
45 {
46 }
47