mirror of
https://github.com/thes3m/XNI
synced 2024-12-26 13:26:06 +01:00
29 lines
646 B
Objective-C
29 lines
646 B
Objective-C
//
|
|
// ContentReader.h
|
|
// XNI
|
|
//
|
|
// Created by Matej Jan on 10.9.10.
|
|
// Copyright 2010 Retronator. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "Retronator.Xni.Framework.Content.classes.h"
|
|
|
|
@interface ContentReader : NSObject {
|
|
ContentManager *contentManager;
|
|
NSMutableArray *contentStack;
|
|
|
|
CFMutableDictionaryRef sharedResources;
|
|
}
|
|
|
|
- (id) initWithContentManager:(ContentManager*)theContentManager Content:(id)theContent;
|
|
|
|
@property (nonatomic, readonly) ContentManager *contentManager;
|
|
@property (nonatomic, readonly) id content;
|
|
|
|
- (id) readObjectFrom:(id)source;
|
|
- (id) readSharedResourceFrom:(id)source;
|
|
|
|
@end
|