Create a Renderer and copy over the Math library
This commit is contained in:
parent
75f23a94a4
commit
bb9507e3ec
4 changed files with 156 additions and 0 deletions
|
@ -11,6 +11,8 @@
|
|||
C0C15A90218DDD87007494E2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C0C15A8F218DDD87007494E2 /* Assets.xcassets */; };
|
||||
C0C15A93218DDD87007494E2 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0C15A91218DDD87007494E2 /* MainMenu.xib */; };
|
||||
C0C15A9D218DDDC3007494E2 /* TerrainViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0C15A9B218DDDC3007494E2 /* TerrainViewController.swift */; };
|
||||
C0C15AA0218DE0B2007494E2 /* Renderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0C15A9F218DE0B2007494E2 /* Renderer.swift */; };
|
||||
C0C15AA2218DE21E007494E2 /* Math.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0C15AA1218DE21E007494E2 /* Math.swift */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
|
@ -21,6 +23,8 @@
|
|||
C0C15A94218DDD87007494E2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||
C0C15A95218DDD87007494E2 /* Terrain.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Terrain.entitlements; sourceTree = "<group>"; };
|
||||
C0C15A9B218DDDC3007494E2 /* TerrainViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TerrainViewController.swift; sourceTree = "<group>"; };
|
||||
C0C15A9F218DE0B2007494E2 /* Renderer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Renderer.swift; sourceTree = "<group>"; };
|
||||
C0C15AA1218DE21E007494E2 /* Math.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Math.swift; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
|
@ -55,6 +59,8 @@
|
|||
children = (
|
||||
C0C15A8D218DDD85007494E2 /* AppDelegate.swift */,
|
||||
C0C15A9B218DDDC3007494E2 /* TerrainViewController.swift */,
|
||||
C0C15A9F218DE0B2007494E2 /* Renderer.swift */,
|
||||
C0C15AA1218DE21E007494E2 /* Math.swift */,
|
||||
C0C15A8F218DDD87007494E2 /* Assets.xcassets */,
|
||||
C0C15A91218DDD87007494E2 /* MainMenu.xib */,
|
||||
C0C15A94218DDD87007494E2 /* Info.plist */,
|
||||
|
@ -134,7 +140,9 @@
|
|||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
C0C15A9D218DDDC3007494E2 /* TerrainViewController.swift in Sources */,
|
||||
C0C15AA0218DE0B2007494E2 /* Renderer.swift in Sources */,
|
||||
C0C15A8E218DDD85007494E2 /* AppDelegate.swift in Sources */,
|
||||
C0C15AA2218DE21E007494E2 /* Math.swift in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue