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