]> Dogcows Code - chaz/yoink/blob - src/TilemapFont.hh
the massive refactoring effort
[chaz/yoink] / src / TilemapFont.hh
1
2 /*] Copyright (c) 2009-2010, Charles McGarvey [**************************
3 **] All rights reserved.
4 *
5 * vi:ts=4 sw=4 tw=75
6 *
7 * Distributable under the terms and conditions of the 2-clause BSD license;
8 * see the file COPYING for a complete text of the license.
9 *
10 **************************************************************************/
11
12 #ifndef _TILEMAPFONT_HH_
13 #define _TILEMAPFONT_HH_
14
15 /**
16 * @file TilemapFont.hh
17 * Text on the screen.
18 */
19
20 #include <moof/texture.hh>
21
22
23 class TilemapFont : public moof::texture
24 {
25 public:
26
27 TilemapFont();
28
29 void tile_coordinates(char symbol, moof::scalar coords[8],
30 moof::texture::orientation what = moof::texture::normal);
31 };
32
33
34 #endif // _TILEMAPFONT_HH_
35
This page took 0.029291 seconds and 4 git commands to generate.