mirror of https://github.com/axmolengine/axmol.git
28 lines
410 B
C++
28 lines
410 B
C++
//
|
|
// CCFontRenderIOS.h
|
|
// TestNewStringStuff
|
|
//
|
|
// Created by Carlo Morgantini on 5/28/13.
|
|
//
|
|
//
|
|
|
|
#ifndef _FontRenderIOS_h
|
|
#define _FontRenderIOS_h
|
|
|
|
#include "CCFontRender.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
class FontRenderIOS : public FontRender
|
|
{
|
|
public:
|
|
|
|
virtual ~FontRenderIOS() {}
|
|
virtual unsigned char * preparePageGlyphData(TextPageDef *thePage, char *fontName, int fontSize);
|
|
|
|
};
|
|
|
|
NS_CC_END
|
|
|
|
#endif
|