diff options
| author | Ben Beltran <ben@freshout.us> | 2013-08-14 09:00:22 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@freshout.us> | 2013-08-14 09:00:22 -0500 |
| commit | 8534e46e400268c5ceffb3b14f02cef39eedae8f (patch) | |
| tree | ec864c10f35c91c87711b0a12710ee18ba81f9dc /Super Polarity.xcodeproj | |
| parent | ed603039c4a456b37aefe434a3b1a5352362d86b (diff) | |
Add some basic actorstuffs
Diffstat (limited to 'Super Polarity.xcodeproj')
3 files changed, 38 insertions, 0 deletions
diff --git a/Super Polarity.xcodeproj/project.pbxproj b/Super Polarity.xcodeproj/project.pbxproj index 364ccf7..b39b0e2 100644 --- a/Super Polarity.xcodeproj/project.pbxproj +++ b/Super Polarity.xcodeproj/project.pbxproj @@ -14,6 +14,8 @@ 8E9D792917BA690700C76DC9 /* SDL2_ttf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8E9D792417BA690700C76DC9 /* SDL2_ttf.framework */; }; 8E9D792A17BA690700C76DC9 /* SDL2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8E9D792517BA690700C76DC9 /* SDL2.framework */; }; 8EC3B7BA17BB185D00D3BDD0 /* ben.png in Copy Static Images */ = {isa = PBXBuildFile; fileRef = 8EC3B7B917BB185700D3BDD0 /* ben.png */; }; + 8EE9CAD717BBB26E00CA3A98 /* actor.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EE9CAD617BBB26E00CA3A98 /* actor.c */; }; + 8EE9CADA17BBB6BF00CA3A98 /* actor_manager.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EE9CAD917BBB6BF00CA3A98 /* actor_manager.c */; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -40,6 +42,10 @@ 8E9D792417BA690700C76DC9 /* SDL2_ttf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL2_ttf.framework; path = vendor/frameworks/SDL2_ttf.framework; sourceTree = "<group>"; }; 8E9D792517BA690700C76DC9 /* SDL2.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL2.framework; path = vendor/frameworks/SDL2.framework; sourceTree = "<group>"; }; 8EC3B7B917BB185700D3BDD0 /* ben.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ben.png; path = data/img/static/ben.png; sourceTree = "<group>"; }; + 8EE9CAD517BBAD9000CA3A98 /* actor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = actor.h; sourceTree = "<group>"; }; + 8EE9CAD617BBB26E00CA3A98 /* actor.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = actor.c; sourceTree = "<group>"; }; + 8EE9CAD817BBB6B000CA3A98 /* actor_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = actor_manager.h; sourceTree = "<group>"; }; + 8EE9CAD917BBB6BF00CA3A98 /* actor_manager.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = actor_manager.c; sourceTree = "<group>"; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -83,6 +89,7 @@ 8E9D78F517BA646F00C76DC9 /* src */ = { isa = PBXGroup; children = ( + 8EE9CAD417BBAD6D00CA3A98 /* lib */, 8E9D78F617BA646F00C76DC9 /* main.c */, 8E9D78F717BA646F00C76DC9 /* Super_Polarity.1 */, ); @@ -113,6 +120,17 @@ name = static; sourceTree = "<group>"; }; + 8EE9CAD417BBAD6D00CA3A98 /* lib */ = { + isa = PBXGroup; + children = ( + 8EE9CAD517BBAD9000CA3A98 /* actor.h */, + 8EE9CAD617BBB26E00CA3A98 /* actor.c */, + 8EE9CAD817BBB6B000CA3A98 /* actor_manager.h */, + 8EE9CAD917BBB6BF00CA3A98 /* actor_manager.c */, + ); + name = lib; + sourceTree = "<group>"; + }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -165,6 +183,8 @@ buildActionMask = 2147483647; files = ( 8E9D78F817BA646F00C76DC9 /* main.c in Sources */, + 8EE9CAD717BBB26E00CA3A98 /* actor.c in Sources */, + 8EE9CADA17BBB6BF00CA3A98 /* actor_manager.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/Super Polarity.xcodeproj/project.xcworkspace/xcuserdata/benbeltran.xcuserdatad/UserInterfaceState.xcuserstate b/Super Polarity.xcodeproj/project.xcworkspace/xcuserdata/benbeltran.xcuserdatad/UserInterfaceState.xcuserstate Binary files differindex 11dbff6..05ba073 100644 --- a/Super Polarity.xcodeproj/project.xcworkspace/xcuserdata/benbeltran.xcuserdatad/UserInterfaceState.xcuserstate +++ b/Super Polarity.xcodeproj/project.xcworkspace/xcuserdata/benbeltran.xcuserdatad/UserInterfaceState.xcuserstate diff --git a/Super Polarity.xcodeproj/xcuserdata/benbeltran.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist b/Super Polarity.xcodeproj/xcuserdata/benbeltran.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist new file mode 100644 index 0000000..a05e410 --- /dev/null +++ b/Super Polarity.xcodeproj/xcuserdata/benbeltran.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Bucket + type = "1" + version = "1.0"> + <FileBreakpoints> + <FileBreakpoint + shouldBeEnabled = "Yes" + ignoreCount = "0" + continueAfterRunningActions = "No" + filePath = "src/actor.h" + timestampString = "398180339.270324" + startingColumnNumber = "9223372036854775807" + endingColumnNumber = "9223372036854775807" + startingLineNumber = "26" + endingLineNumber = "26"> + </FileBreakpoint> + </FileBreakpoints> +</Bucket> |