mirror of
https://github.com/thes3m/XNI
synced 2024-12-26 13:26:06 +01:00
Adding ContentManager skeleton.
git-svn-id: http://xni.googlecode.com/svn/XNI@14 ac433895-eea3-a490-d80a-17149a75e588
This commit is contained in:
parent
0a8f07b872
commit
801508e414
16
Classes/Retronator/Xni/Framework/Content/ContentManager.h
Normal file
16
Classes/Retronator/Xni/Framework/Content/ContentManager.h
Normal file
@ -0,0 +1,16 @@
|
||||
//
|
||||
// ContentManager.h
|
||||
// XNI
|
||||
//
|
||||
// Created by Matej Jan on 6.9.10.
|
||||
// Copyright 2010 Retronator. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
|
||||
@interface ContentManager : NSObject {
|
||||
|
||||
}
|
||||
|
||||
@end
|
14
Classes/Retronator/Xni/Framework/Content/ContentManager.m
Normal file
14
Classes/Retronator/Xni/Framework/Content/ContentManager.m
Normal file
@ -0,0 +1,14 @@
|
||||
//
|
||||
// ContentManager.m
|
||||
// XNI
|
||||
//
|
||||
// Created by Matej Jan on 6.9.10.
|
||||
// Copyright 2010 Retronator. All rights reserved.
|
||||
//
|
||||
|
||||
#import "ContentManager.h"
|
||||
|
||||
|
||||
@implementation ContentManager
|
||||
|
||||
@end
|
@ -0,0 +1 @@
|
||||
@class ContentManager
|
@ -0,0 +1 @@
|
||||
#import "ContentManager.h"
|
@ -14,6 +14,12 @@
|
||||
B5080704122E4EE900C330E2 /* Texture2D.m in Sources */ = {isa = PBXBuildFile; fileRef = B5080702122E4EE900C330E2 /* Texture2D.m */; };
|
||||
B508070C122E4FBB00C330E2 /* GraphicsResource.h in Headers */ = {isa = PBXBuildFile; fileRef = B508070A122E4FBB00C330E2 /* GraphicsResource.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
||||
B508070D122E4FBB00C330E2 /* GraphicsResource.m in Sources */ = {isa = PBXBuildFile; fileRef = B508070B122E4FBB00C330E2 /* GraphicsResource.m */; };
|
||||
B59AD7F01236E07300F99511 /* ContentImporter.h in Headers */ = {isa = PBXBuildFile; fileRef = B59AD7EE1236E07300F99511 /* ContentImporter.h */; };
|
||||
B59AD7F11236E07300F99511 /* ContentImporter.m in Sources */ = {isa = PBXBuildFile; fileRef = B59AD7EF1236E07300F99511 /* ContentImporter.m */; };
|
||||
B5A1C82F12353F8700DB60CB /* Retronator.Xni.Framework.Content.h in Headers */ = {isa = PBXBuildFile; fileRef = B5A1C82E12353F8700DB60CB /* Retronator.Xni.Framework.Content.h */; };
|
||||
B5A1C83112353F9B00DB60CB /* Retronator.Xni.Framework.Content.classes.h in Headers */ = {isa = PBXBuildFile; fileRef = B5A1C83012353F9B00DB60CB /* Retronator.Xni.Framework.Content.classes.h */; };
|
||||
B5A1C83412353FBB00DB60CB /* ContentManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B5A1C83212353FBB00DB60CB /* ContentManager.h */; };
|
||||
B5A1C83512353FBB00DB60CB /* ContentManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B5A1C83312353FBB00DB60CB /* ContentManager.m */; };
|
||||
B5DDE7EB11FF04E3000DB38B /* Game.h in Headers */ = {isa = PBXBuildFile; fileRef = B5DDE7E911FF04E3000DB38B /* Game.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
||||
B5DDE7EC11FF04E3000DB38B /* Game.m in Sources */ = {isa = PBXBuildFile; fileRef = B5DDE7EA11FF04E3000DB38B /* Game.m */; };
|
||||
B5DDE7EF11FF06BB000DB38B /* GameServiceContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = B5DDE7ED11FF06BB000DB38B /* GameServiceContainer.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
||||
@ -77,6 +83,12 @@
|
||||
B5080702122E4EE900C330E2 /* Texture2D.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Texture2D.m; sourceTree = "<group>"; };
|
||||
B508070A122E4FBB00C330E2 /* GraphicsResource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GraphicsResource.h; sourceTree = "<group>"; };
|
||||
B508070B122E4FBB00C330E2 /* GraphicsResource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GraphicsResource.m; sourceTree = "<group>"; };
|
||||
B59AD7EE1236E07300F99511 /* ContentImporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContentImporter.h; sourceTree = "<group>"; };
|
||||
B59AD7EF1236E07300F99511 /* ContentImporter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContentImporter.m; sourceTree = "<group>"; };
|
||||
B5A1C82E12353F8700DB60CB /* Retronator.Xni.Framework.Content.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Retronator.Xni.Framework.Content.h; sourceTree = "<group>"; };
|
||||
B5A1C83012353F9B00DB60CB /* Retronator.Xni.Framework.Content.classes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Retronator.Xni.Framework.Content.classes.h; sourceTree = "<group>"; };
|
||||
B5A1C83212353FBB00DB60CB /* ContentManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContentManager.h; sourceTree = "<group>"; };
|
||||
B5A1C83312353FBB00DB60CB /* ContentManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContentManager.m; sourceTree = "<group>"; };
|
||||
B5DDE7E911FF04E3000DB38B /* Game.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Game.h; sourceTree = "<group>"; };
|
||||
B5DDE7EA11FF04E3000DB38B /* Game.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Game.m; sourceTree = "<group>"; };
|
||||
B5DDE7ED11FF06BB000DB38B /* GameServiceContainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GameServiceContainer.h; sourceTree = "<group>"; };
|
||||
@ -189,6 +201,27 @@
|
||||
name = "Other Sources";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
B59AD7E81236E02500F99511 /* Pipeline */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
B59AD7EE1236E07300F99511 /* ContentImporter.h */,
|
||||
B59AD7EF1236E07300F99511 /* ContentImporter.m */,
|
||||
);
|
||||
path = Pipeline;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
B5A1C82B12353EFB00DB60CB /* Content */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
B59AD7E81236E02500F99511 /* Pipeline */,
|
||||
B5A1C83012353F9B00DB60CB /* Retronator.Xni.Framework.Content.classes.h */,
|
||||
B5A1C82E12353F8700DB60CB /* Retronator.Xni.Framework.Content.h */,
|
||||
B5A1C83212353FBB00DB60CB /* ContentManager.h */,
|
||||
B5A1C83312353FBB00DB60CB /* ContentManager.m */,
|
||||
);
|
||||
path = Content;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
B5DDE82911FF10D0000DB38B /* Graphics */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
@ -231,6 +264,7 @@
|
||||
B5DE188E11F887A000BF3275 /* Framework */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
B5A1C82B12353EFB00DB60CB /* Content */,
|
||||
B5DDE82911FF10D0000DB38B /* Graphics */,
|
||||
B5DE189F11F8888B00BF3275 /* Retronator.Xni.Framework.classes.h */,
|
||||
B5DE18A011F8888B00BF3275 /* Retronator.Xni.Framework.h */,
|
||||
@ -329,6 +363,10 @@
|
||||
B50806FF122E4ECF00C330E2 /* Texture.h in Headers */,
|
||||
B5080703122E4EE900C330E2 /* Texture2D.h in Headers */,
|
||||
B508070C122E4FBB00C330E2 /* GraphicsResource.h in Headers */,
|
||||
B5A1C82F12353F8700DB60CB /* Retronator.Xni.Framework.Content.h in Headers */,
|
||||
B5A1C83112353F9B00DB60CB /* Retronator.Xni.Framework.Content.classes.h in Headers */,
|
||||
B5A1C83412353FBB00DB60CB /* ContentManager.h in Headers */,
|
||||
B59AD7F01236E07300F99511 /* ContentImporter.h in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
@ -400,6 +438,8 @@
|
||||
B5080700122E4ECF00C330E2 /* Texture.m in Sources */,
|
||||
B5080704122E4EE900C330E2 /* Texture2D.m in Sources */,
|
||||
B508070D122E4FBB00C330E2 /* GraphicsResource.m in Sources */,
|
||||
B5A1C83512353FBB00DB60CB /* ContentManager.m in Sources */,
|
||||
B59AD7F11236E07300F99511 /* ContentImporter.m in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user