1
0
mirror of https://github.com/thes3m/XNI synced 2024-12-26 13:26:06 +01:00
XNI/Classes/Retronator/Xni/Framework/Graphics/SpriteFont+Internal.h

22 lines
463 B
Objective-C

//
// SpriteFont+Internal.h
// XNI
//
// Created by Matej Jan on 20.12.10.
// Copyright 2010 Retronator. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SpriteFont.h"
@interface SpriteFont (Internal)
- (id) initWithTexture:(Texture2D*)theTexture characterMap:(NSDictionary*)theCharacterMap lineSpacing:(int)theLineSpacing;
@property (nonatomic, readonly) Texture2D *texture;
- (Rectangle*) sourceRectangleForCharacter:(unichar)character;
@end