1
0
mirror of https://github.com/thes3m/XNI synced 2024-12-26 13:26:06 +01:00

25 lines
532 B
C
Raw Normal View History

//
// ExternalReference.h
// XNI
//
// Created by Matej Jan on 29.11.10.
// Copyright 2010 Retronator. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "Retronator.Xni.Framework.Content.Pipeline.classes.h"
#import "ContentItem.h"
@interface ExternalReference : ContentItem {
NSString *filename;
}
- (id) initWithFilename:(NSString*)theFilename;
- (id) initWithFilename:(NSString *)theFilename relativeToContent:(ContentIdentity*)relativeToContent;
@property (nonatomic, retain) NSString *filename;
@end