1
0
mirror of https://github.com/thes3m/XNI synced 2024-12-26 13:26:06 +01:00
Matej Jan 0a8f07b872 Added Texture2D loading from Data.
git-svn-id: http://xni.googlecode.com/svn/XNI@13 ac433895-eea3-a490-d80a-17149a75e588
2010-09-01 14:55:24 +00:00

29 lines
665 B
Objective-C

//
// GraphicsResource.h
// XNI
//
// Created by Matej Jan on 1.9.10.
// Copyright 2010 Retronator. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "Retronator.Xni.Framework.classes.h"
#import "Retronator.Xni.Framework.Graphics.classes.h"
@interface GraphicsResource : NSObject {
GraphicsDevice *graphicsDevice;
BOOL isDisposed;
NSString *name;
id tag;
}
- (id) initWithGraphicsDevice:(GraphicsDevice*)theGraphicsDevice;
@property (nonatomic, readonly) GraphicsDevice *graphicsDevice;
@property (nonatomic, readonly) BOOL isDisposed;
@property (nonatomic, retain) NSString *name;
@property (nonatomic, retain) id tag;
@end