OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
font.h
1/*---------------------------------------------------------------------------*
2 Project: NitroSDK - RTC - demos
3 File: font.h
4
5 Copyright 2003,2004 Nintendo. All rights reserved.
6
7 These coded instructions, statements, and computer programs contain
8 proprietary information of Nintendo of America Inc. and/or Nintendo
9 Company Ltd., and are protected by Federal copyright law. They may
10 not be disclosed to third parties or copied or duplicated in any form,
11 in whole or in part, without the prior written consent of Nintendo.
12
13 $Log: font.h,v $
14 Revision 1.1 2004/05/12 02:39:13 terui
15 initial upload
16
17 $NoKeywords: $
18 *---------------------------------------------------------------------------*/
19
20#ifndef FONT_H_
21#define FONT_H_
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27/*===========================================================================*/
28
29#include <nitro/types.h>
30
31extern const u32 d_CharData[ 8 * 256 ];
32extern const u32 d_PaletteData[ 8 * 16 ];
33
34/*===========================================================================*/
35
36#ifdef __cplusplus
37} /* extern "C" */
38#endif
39
40#endif /* FONT_H_ */
41
42/*---------------------------------------------------------------------------*
43 End of file
44 *---------------------------------------------------------------------------*/