File: font_data.h

package info (click to toggle)
enemylines3 1.2-6
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,384 kB
  • ctags: 1,445
  • sloc: cpp: 16,323; makefile: 70; sh: 52
file content (18 lines) | stat: -rw-r--r-- 275 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __font_data_h
#define __font_data_h

#include <iostream>


class Font_data{
	static char get_field(int letter,int x,int y);
	static void drawletter_nodl(char letter,bool smooth);
public:
	static unsigned int gen_dl();
	static int dx();
	static int dy();
};



#endif