]> Dogcows Code - chaz/yoink/blob - src/TilemapFont.hh
arch linux prefers pkgconfig for finding lua
[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 Mf::Texture
24 {
25 public:
26
27 TilemapFont();
28
29 void getTileCoords(char symbol, Mf::Scalar coords[8],
30 Mf::Texture::Orientation what = Mf::Texture::NORMAL);
31 };
32
33
34 #endif // _TILEMAPFONT_HH_
35
This page took 0.033935 seconds and 4 git commands to generate.