1 /**
2  * @file sprite_eye.cc
3  * @brief The sprite of the eye used in bricks level
4  * @created 2004-09-17
5  * @date 2007-09-12
6  * @copyright 1991-2014 TLK Games
7  * @author Bruno Ethvignot
8  * @version $Revision: 24 $
9  */
10 /*
11  * copyright (c) 1991-2014 TLK Games all rights reserved
12  * $Id: sprite_eye.cc 24 2014-09-28 15:30:04Z bruno.ethvignot@gmail.com $
13  *
14  * TecnoballZ is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 3 of the License, or
17  * (at your option) any later version.
18  *
19  * TecnoballZ is distributed in the hope that it will be useful, but
20  * WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
27  * MA  02110-1301, USA.
28  */
29 #include "../include/sprite_eye.h"
30 
31 /**
32  * Create the object
33  */
sprite_eye()34 sprite_eye::sprite_eye()
35 {
36   clear_sprite_members();
37 }
38 
39 /**
40  * Release the object
41  */
~sprite_eye()42 sprite_eye::~sprite_eye()
43 {
44 }
45