Skip to content

Commit 0ced5e8

Browse files
committed
add MarioCover
1 parent 6808b01 commit 0ced5e8

File tree

89 files changed

+2281
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+2281
-0
lines changed

TechDemos/MarioCover/MarioCover.xcodeproj/project.pbxproj

Lines changed: 603 additions & 0 deletions
Large diffs are not rendered by default.

TechDemos/MarioCover/MarioCover.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict/>
5+
</plist>
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1010"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "F1AB6D45221C1DEB00481C21"
18+
BuildableName = "MarioCover.app"
19+
BlueprintName = "MarioCover"
20+
ReferencedContainer = "container:MarioCover.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
<MacroExpansion>
33+
<BuildableReference
34+
BuildableIdentifier = "primary"
35+
BlueprintIdentifier = "F1AB6D45221C1DEB00481C21"
36+
BuildableName = "MarioCover.app"
37+
BlueprintName = "MarioCover"
38+
ReferencedContainer = "container:MarioCover.xcodeproj">
39+
</BuildableReference>
40+
</MacroExpansion>
41+
<AdditionalOptions>
42+
</AdditionalOptions>
43+
</TestAction>
44+
<LaunchAction
45+
buildConfiguration = "Debug"
46+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
47+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
48+
launchStyle = "0"
49+
useCustomWorkingDirectory = "NO"
50+
ignoresPersistentStateOnLaunch = "NO"
51+
debugDocumentVersioning = "YES"
52+
debugServiceExtension = "internal"
53+
allowLocationSimulation = "YES">
54+
<BuildableProductRunnable
55+
runnableDebuggingMode = "0">
56+
<BuildableReference
57+
BuildableIdentifier = "primary"
58+
BlueprintIdentifier = "F1AB6D45221C1DEB00481C21"
59+
BuildableName = "MarioCover.app"
60+
BlueprintName = "MarioCover"
61+
ReferencedContainer = "container:MarioCover.xcodeproj">
62+
</BuildableReference>
63+
</BuildableProductRunnable>
64+
<AdditionalOptions>
65+
</AdditionalOptions>
66+
</LaunchAction>
67+
<ProfileAction
68+
buildConfiguration = "Release"
69+
shouldUseLaunchSchemeArgsEnv = "YES"
70+
savedToolIdentifier = ""
71+
useCustomWorkingDirectory = "NO"
72+
debugDocumentVersioning = "YES">
73+
<BuildableProductRunnable
74+
runnableDebuggingMode = "0">
75+
<BuildableReference
76+
BuildableIdentifier = "primary"
77+
BlueprintIdentifier = "F1AB6D45221C1DEB00481C21"
78+
BuildableName = "MarioCover.app"
79+
BlueprintName = "MarioCover"
80+
ReferencedContainer = "container:MarioCover.xcodeproj">
81+
</BuildableReference>
82+
</BuildableProductRunnable>
83+
</ProfileAction>
84+
<AnalyzeAction
85+
buildConfiguration = "Debug">
86+
</AnalyzeAction>
87+
<ArchiveAction
88+
buildConfiguration = "Release"
89+
revealArchiveInOrganizer = "YES">
90+
</ArchiveAction>
91+
</Scheme>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//
2+
// AppDelegate.swift
3+
// MyGame
4+
//
5+
// Created by Ramires Moreira on 19/02/19.
6+
// Copyright © 2019 Ramires Moreira. All rights reserved.
7+
//
8+
9+
import UIKit
10+
11+
@UIApplicationMain
12+
class AppDelegate: UIResponder, UIApplicationDelegate {
13+
14+
var window: UIWindow?
15+
16+
17+
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
18+
// Override point for customization after application launch.
19+
return true
20+
}
21+
22+
}
23+
Binary file not shown.
1.92 KB
Loading
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
{
2+
"images" : [
3+
{
4+
"size" : "20x20",
5+
"idiom" : "iphone",
6+
"filename" : "246x0w.jpg",
7+
"scale" : "2x"
8+
},
9+
{
10+
"idiom" : "iphone",
11+
"size" : "20x20",
12+
"scale" : "3x"
13+
},
14+
{
15+
"idiom" : "iphone",
16+
"size" : "29x29",
17+
"scale" : "2x"
18+
},
19+
{
20+
"idiom" : "iphone",
21+
"size" : "29x29",
22+
"scale" : "3x"
23+
},
24+
{
25+
"idiom" : "iphone",
26+
"size" : "40x40",
27+
"scale" : "2x"
28+
},
29+
{
30+
"idiom" : "iphone",
31+
"size" : "40x40",
32+
"scale" : "3x"
33+
},
34+
{
35+
"idiom" : "iphone",
36+
"size" : "60x60",
37+
"scale" : "2x"
38+
},
39+
{
40+
"idiom" : "iphone",
41+
"size" : "60x60",
42+
"scale" : "3x"
43+
},
44+
{
45+
"idiom" : "ipad",
46+
"size" : "20x20",
47+
"scale" : "1x"
48+
},
49+
{
50+
"idiom" : "ipad",
51+
"size" : "20x20",
52+
"scale" : "2x"
53+
},
54+
{
55+
"idiom" : "ipad",
56+
"size" : "29x29",
57+
"scale" : "1x"
58+
},
59+
{
60+
"idiom" : "ipad",
61+
"size" : "29x29",
62+
"scale" : "2x"
63+
},
64+
{
65+
"idiom" : "ipad",
66+
"size" : "40x40",
67+
"scale" : "1x"
68+
},
69+
{
70+
"idiom" : "ipad",
71+
"size" : "40x40",
72+
"scale" : "2x"
73+
},
74+
{
75+
"idiom" : "ipad",
76+
"size" : "76x76",
77+
"scale" : "1x"
78+
},
79+
{
80+
"idiom" : "ipad",
81+
"size" : "76x76",
82+
"scale" : "2x"
83+
},
84+
{
85+
"idiom" : "ipad",
86+
"size" : "83.5x83.5",
87+
"scale" : "2x"
88+
},
89+
{
90+
"idiom" : "ios-marketing",
91+
"size" : "1024x1024",
92+
"scale" : "1x"
93+
}
94+
],
95+
"info" : {
96+
"version" : 1,
97+
"author" : "xcode"
98+
}
99+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"version" : 1,
4+
"author" : "xcode"
5+
}
6+
}

0 commit comments

Comments
 (0)