Getting Error in Windows 8.1 XAML code when using Microsoft.PlayerFramework

Error Is:
The specified value cannot be assigned to the collection. the following type was expected UIelement
xmlns:player="using:Microsoft.PlayerFramework"
<Border x:Name="Border" DataContext="{TemplateBinding ViewModel}">
<Border.Resources>
<player:BoolToVisibilityConverter x:Key="VisibleIfConverter" />
</Border.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" VerticalAlignment="Bottom" HorizontalAlignment="Center">
<StackPanel Orientation="Horizontal" x:Name="NonEssentialsNearLeft">
<player:SkipPreviousButtonBehavior x:Name="SkipPreviousButton" ViewModel="{TemplateBinding ViewModel}" Visibility="{Binding IsSkipPreviousButtonVisible, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource VisibleIfConverter}}" Size="70" FontSize="40" Margin="10,0,10,0" StrokeThickness="0" Background="{StaticResource ItemBackgroundThemeBrush}"/>
<player:RewindButton x:Name="RewindButton" ViewModel="{TemplateBinding ViewModel}" Visibility="{Binding IsRewindButtonVisible, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource VisibleIfConverter}}" Size="70" FontSize="40" Margin="10,0,10,0" StrokeThickness="0" Background="{StaticResource ItemBackgroundThemeBrush}"/>
<player:SkipBackButton x:Name="SkipBackButton" ViewModel="{TemplateBinding ViewModel}" Visibility="Collapsed" Size="70" FontSize="40" Margin="10,0,10,0" Padding="0,-10,0,0" StrokeThickness="0" Background="{StaticResource ItemBackgroundThemeBrush}"/>
</StackPanel>
<player:PlayPauseButton x:Name="PlayPauseButton" ViewModel="{TemplateBinding ViewModel}" Visibility="{Binding IsPlayPauseButtonVisible, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource VisibleIfConverter}}" Size="140" FontSize="80" Margin="25,0,25,0" StrokeThickness="0" Background="{StaticResource ItemBackgroundThemeBrush}"/>
<StackPanel Orientation="Horizontal" x:Name="NonEssentialsNearRight">
<player:SkipAheadButton x:Name="SkipAheadButton" ViewModel="{TemplateBinding ViewModel}" Visibility="Collapsed" Size="70" FontSize="40" Margin="10,0,10,0" Padding="0,-10,0,0" StrokeThickness="0" Background="{StaticResource ItemBackgroundThemeBrush}"/>
<player:FastForwardButton x:Name="FastForwardButton" ViewModel="{TemplateBinding ViewModel}" Visibility="{Binding IsFastForwardButtonVisible, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource VisibleIfConverter}}" Size="70" FontSize="40" Margin="10,0,10,0" StrokeThickness="0" Background="{StaticResource ItemBackgroundThemeBrush}"/>
<player:SkipNextButton x:Name="SkipNextButton" ViewModel="{TemplateBinding ViewModel}" Visibility="{Binding IsSkipNextButtonVisible, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource VisibleIfConverter}}" Size="70" FontSize="40" Margin="10,0,10,0" StrokeThickness="0" Background="{StaticResource ItemBackgroundThemeBrush}"/>
</StackPanel>
</StackPanel>
<Grid x:Name="TimelineContainerGrid" Grid.Row="1" Height="60" HorizontalAlignment="Left">
<Grid x:Name="TimelineContainer" Background="{StaticResource ItemBackgroundThemeBrush}">
<Grid Margin="30,4,30,7">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<player:TimeElapsedButton x:Name="TimeElapsedButton" Grid.Column="0" ViewModel="{TemplateBinding ViewModel}" Visibility="{Binding IsTimeElapsedButtonVisible, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource VisibleIfConverter}}" Margin="8,0,8,0"/>
<player:Timeline Height="5" Padding="0,10,0,10" x:Name="Timeline" Grid.Column="1" ViewModel="{TemplateBinding ViewModel}" Visibility="{Binding IsTimelineVisible, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource VisibleIfConverter}}" Margin="8,0,8,0">
<player:Timeline.SliderStyle>
<Style TargetType="player:SeekableSlider">
<Setter Property="Foreground" Value="{StaticResource ButtonForegroundThemeBrush}"/>
<Setter Property="SliderTrackDecreasePressedBackground" Value="{StaticResource ButtonPressedForegroundThemeBrush}" />
<Setter Property="SliderTrackDecreasePointerOverBackground" Value="{StaticResource ButtonPointerOverForegroundThemeBrush}" />
<Setter Property="SliderThumbStyle">
<Setter.Value>
<Style TargetType="Thumb">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Thumb">
<Canvas HorizontalAlignment="Center" VerticalAlignment="Top" Margin="-18,-38,18,0">
<Grid>
<Ellipse Stroke="{StaticResource ButtonForegroundThemeBrush}" Fill="{StaticResource ButtonPressedForegroundThemeBrush}" StrokeThickness="2" Width="35" Height="35"/>
<Path Fill="{StaticResource ButtonForegroundThemeBrush}" Margin="0,0,0,-7" VerticalAlignment="Bottom" HorizontalAlignment="Center" Data="M 0,0 8,0 4,8Z"/>
</Grid>
</Canvas>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Setter.Value>
</Setter>
</Style>
</player:Timeline.SliderStyle>
</player:Timeline>
<player:TimeRemainingButton x:Name="TimeRemainingButton" Grid.Column="2" ViewModel="{TemplateBinding ViewModel}" Visibility="{Binding IsTimeRemainingButtonVisible, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource VisibleIfConverter}}" Margin="8,0,8,0"/>
<player:DurationButton x:Name="DurationButton" Grid.Column="2" ViewModel="{TemplateBinding ViewModel}" Visibility="{Binding IsDurationButtonVisible, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource VisibleIfConverter}}" Margin="8,0,8,0"/>
</Grid>
</Grid>
</Grid>
</Grid>
</Border>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
Iam Getting the above mentioned error at the Bolded parts of the code. How to Resolve this Error, Help me.
Mohan Rajesh Komatlapalli

Hello,
Technically the PlayerFramework is not supported in this forum. For PlayerFramework specific questions you should post to the
Discussion Topics for Player Framework forum. In this case though it looks like the issue is more specific to your XAML binding implementation then the framework itself.
Are you getting the error in the XAML designer or at runtime? Do you know the underlying hex code associated with the error message?
-James
Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/

Similar Messages

  • I downloaded newest itunes version and it would not install properly and now i can't open it. i have removed and reinstalled several times. i get error 7 (windows error 126) something about apple mobile device failed to start. anybody having this problem.

    i downloaded newest itunes version and it would not install properly and now i can't open itunes. i have removed and reinstalled several times. i get error 7 (windows error 126) something about apple mobile device failed to start. what can i do to fix this problem besides restoring system to an earlier date

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • HT1923 I tried to install latest version of itunes on my PC and everthing went south. no matter how many times I reinstall it the new version or even an old version I get ERROR 7 (Windows error 126) and then fail to start because MSVCR80.dll is missing. H

    I tried to install latest version of itunes on my PC now the program doesn't start at all. I remove and reinstalled the program 5 times and I still get ERROR 7 (Windows 126) and failure to start because MSVCR80.dll is missing. Is there a simple fix?

    Click here and follow the instructions.
    (98915)

  • When i open itunes i get error 7 (windows error 998) and to re install intunes which i have tried 3 times

    When i open itunes i get error 7 (windows error 998) and to re install intunes which i have tried 3 times

    Please repair Microsoft.net Framework
    iTunes for Windows: "Error 7" message when opening iTunes
    http://support.apple.com/kb/TS3074

  • I lost itunes.  When I attempt to reinstall I get error 7 (Windows error 193)

    Recently I lost iTunes connection on my Windows 7 pc.  I uninstalled iTunes and other associated Apple programs.  However when I reinstall iTunes, I get error 7 (Windows error 193).  Any help on how I can remedy this.

    wendellfrommanning wrote:
    Recently I lost iTunes connection on my Windows 7 pc.  I uninstalled iTunes and other associated Apple programs.  However when I reinstall iTunes, I get error 7 (Windows error 193).  Any help on how I can remedy this.
    Please visit the guide below and let us know if you have further questions.
    Remove and reinstall iTunes and related software components for Windows Vista, Windows 7, or Windows 8

  • ITunes! Getting Error 7 Windows error 126 Also AVFoundationCF was not found.

    Having trouble downloading iTunes! Getting Error 7 Windows error 126 Also AVFoundationCF was not found. Everything was OK until I update to new version of iTunes. I have uninstalled the entire apple app's restart, disc clean and still not able to install iTunes.

    Same or almost: iTunes was not installed correctly. Please reinstall iTunes. (I dit it!) Error 7 (Windows error 2)

  • HT201413 cannot reinstall itunes, i get this message MSVCR80.dll not found.  Try to reinstall itunes and i get error 7 (Windows erro 126)  help please

    cannot reinstall itunes, i get this message MSVCR80.dll not found.  Try to reinstall itunes and i get error 7 (Windows erro 126)  help please

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • HT1926 I tried to update this ITunes install 4 times I continue to get ERROR 7 - Windows error 127 HELP

    I tried to update this ITunes install 4 times I continue to get ERROR 7 - Windows error 127 HELP

    First try updating to iTunes 11.1.5.5, using an installer downloaded from the Apple website:
    http://www.apple.com/itunes/download/
    If you still get the errors after that, try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • When trying to install itunes 11, I get error 7 (Windows error 126).  Please advise

    When trying to install itunes 11, I get error 7 (Windows error 126).  Please advise

    Hi mrsboots2003,
    Thanks for using Apple Support Communities.  This article has steps you can take for the error you're seeing:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    - Ari

  • Trying to install windows 7 and getting error message windows must be installed to a partition formatted as NTFS

    Trying to install windows 7 and getting error message Windows must be installed to a partition formatted as NTFS

    Welcome to Apple Support Communities
    Boot Camp Assistant creates a Windows partition in FAT32 to make the Windows XP installation easier.
    The problem is that Windows Vista, 7 and 8 require a NTFS partition, so the Windows installer gives this error. The only thing you have to do is to choose the BOOTCAMP partition in the installer and go to “Drive options (advanced)” > Format. Finally, install it

  • Unable to download Itunes to a PC with Windows 7 I keep getting error 7 (windows error 14003)

    Having a problem downloading ITunes on PC windows 7 keep getting error 7 (windows error 14003) any ideas?

    Hello Rbarnett911
    Check out the article below for troubleshooting the error 7 message. If that does not work, then remove iTunes and other Apple Software and then install iTunes again.
    iTunes for Windows: "Error 7" message when opening iTunes
    http://support.apple.com/kb/ts3074
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/HT1923
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • TS1718 I tried to update, did not work, unintstalled did not work.  Now when I try to install i get error message "The feature you are trying to use is on a network resource tha is unabailable.  Looking for itunes64.msi path.

    I tried to update, did not work, unintstalled did not work.  Now when I try to install i get error message "The feature you are trying to use is on a network resource tha is unabailable.  Looking for itunes64.msi path.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Get error message that skype has problem loading when computer is turned on the first time every day. this started when the latest firefox v6.0 was downloaded.

    get error message that skype has problem loading when computer is turned on the first time every day. this started when the latest firefox v6.0 was downloaded.

    ''mbratlie [[#question-1055011|said]]''
    <blockquote>
    It was working fine and I had no problems, and then one day I tried opening a window and it froze. When I tried quiting the program my whole window went black. The x to the close the window doesn't work. The only option I have in my tool bar is Firefox and nothing happens when I try to quit firefox. Every time I try to shut down my computer Firefox prevents it. I haven't updated Firefox yet, so it's an older program, but only by a month or two. What's going on and how do I fix it?
    </blockquote>
    This is the first time it's ever happened. I downloaded the new operating system for Firefox but I can't install it until the Firefox currently running on my laptop quits, which it won't.

  • I get error message: not enough space to download when I try to buy a tv series on Itunes. It tells me to delete photos or videos to make space, but I have no photos and videos. Help?

    I get error message: not enough space to download when I try to buy a tv series on Itunes. It tells me to delete photos or videos to make space, but I have no photos and videos. Help?

    I would guess that a TV series takes up a fair amount of storage capacity. It is just a standard message I think that may indicate that you are actually running low on storage space.
    If you go to Settings>General>About how many GBs are specified as being available?  If you are low on space maybe deleting some apps may help.

  • XCode error: clang: error: linker command failed with exit code 1 (use -v to see invocation)

    I am trying to make my game,
    but EVERY time it says this:
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    I have been pulling out my hair for the hours trying to figure out the awnser. There are a bunch of unrelated searches in google when I search it.
    Want to see the ENTIRE dubugging code?
    Ld "/Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccj iwwgdhzsbhnhxmkdpznhsg/Build/Products/Debug-iphonesimulator/The hardest game EVER.app/The hardest game EVER" normal i386     cd "/Users/Rilian/Desktop/Project folder/The hardest game EVER"     setenv IPHONEOS_DEPLOYMENT_TARGET 6.1     setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/ Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/b in:/usr/sbin:/sbin"     /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/ usr/bin/clang++ -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/SDKs/iPhoneSimulator6.1.sdk -L/Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmcc jiwwgdhzsbhnhxmkdpznhsg/Build/Products/Debug-iphonesimulator -F/Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmcc jiwwgdhzsbhnhxmkdpznhsg/Build/Products/Debug-iphonesimulator -filelist "/Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccj iwwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/The hardest game EVER.LinkFileList" -Xlinker -objc_abi_version -Xlinker 2 -lz -lsqlite3 -ObjC -fobjc-link-runtime -Xlinker -no_implicit_dylibs -mios-simulator-version-min=6.1 -framework QuartzCore -framework OpenGLES -framework OpenAL -framework AudioToolbox -framework AVFoundation -framework UIKit -framework Foundation -framework CoreGraphics -framework GameKit -o "/Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccj iwwgdhzsbhnhxmkdpznhsg/Build/Products/Debug-iphonesimulator/The hardest game EVER.app/The hardest game EVER"  duplicate symbol _OBJC_CLASS_$_HelloWorldLayer in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/HelloWorldLayer-288328F8C797DA0F.o duplicate symbol _OBJC_METACLASS_$_HelloWorldLayer in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/HelloWorldLayer-288328F8C797DA0F.o duplicate symbol _OBJC_IVAR_$_AppController.window_ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_IVAR_$_AppController.director_ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_IVAR_$_AppController.navController_ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_METACLASS_$_MyNavigationController in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_CLASS_$_MyNavigationController in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_CLASS_$_AppController in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_METACLASS_$_AppController in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_IVAR_$_CCAction._target in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCAction._originalTarget in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCAction._tag in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFiniteTimeAction._duration in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCRepeatForever._innerAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCSpeed._speed in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCSpeed._innerAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._followedNode in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._boundarySet in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._boundaryFullyCovered in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._fullScreenSize in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._halfScreenSize in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._leftBoundary in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._rightBoundary in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._topBoundary in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._bottomBoundary in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_CLASS_$_CCAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_METACLASS_$_CCAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_METACLASS_$_CCFiniteTimeAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_CLASS_$_CCFiniteTimeAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_CLASS_$_CCRepeatForever in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_METACLASS_$_CCRepeatForever in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_CLASS_$_CCSpeed in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_METACLASS_$_CCSpeed in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_CLASS_$_CCFollow in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_METACLASS_$_CCFollow in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._centerXOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._centerYOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._centerZOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._eyeXOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._eyeYOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._eyeZOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._upXOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._upYOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._upZOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._radius in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._deltaRadius in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._angleZ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._deltaAngleZ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._angleX in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._deltaAngleX in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._radDeltaZ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._radDeltaX in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._radZ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._radX in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_CLASS_$_CCActionCamera in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_METACLASS_$_CCActionCamera in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_CLASS_$_CCOrbitCamera in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_METACLASS_$_CCOrbitCamera in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCPointArray._controlPoints in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _ccCardinalSplineAt in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCCardinalSplineTo._tension in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCCardinalSplineTo._points in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCCardinalSplineTo._deltaT in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCCardinalSplineTo._previousPosition in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCCardinalSplineTo._accumulatedDiff in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCCardinalSplineBy._startPosition in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_CLASS_$_CCPointArray in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_METACLASS_$_CCPointArray in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_CLASS_$_CCCardinalSplineTo in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_METACLASS_$_CCCardinalSplineTo in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_CLASS_$_CCCardinalSplineBy in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_METACLASS_$_CCCardinalSplineBy in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_CLASS_$_CCCatmullRomTo in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_METACLASS_$_CCCatmullRomTo in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_CLASS_$_CCCatmullRomBy in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_METACLASS_$_CCCatmullRomBy in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCActionEase._inner in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_IVAR_$_CCEaseRateAction._rate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_IVAR_$_CCEaseElastic._period in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCActionEase in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCActionEase in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseRateAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseRateAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseExponentialOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseExponentialOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseExponentialIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseExponentialIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseExponentialInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseExponentialInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseSineOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseSineOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseSineIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseSineIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseSineInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseSineInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseElastic in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseElastic in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseElasticOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseElasticOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseElasticIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseElasticIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseElasticInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseElasticInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBounce in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBounce in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBounceOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBounceOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBounceIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBounceIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBounceInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBounceInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBackOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBackOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBackIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBackIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBackInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBackInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_IVAR_$_CCGridAction._gridSize in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCAccelDeccelAmplitude._rate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCAccelDeccelAmplitude._other in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCAccelAmplitude._rate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCAccelAmplitude._other in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCDeccelAmplitude._rate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCDeccelAmplitude._other in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCReuseGrid._times in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCGridAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCGridAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCGrid3DAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCGrid3DAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCTiledGrid3DAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCTiledGrid3DAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCAccelDeccelAmplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCAccelDeccelAmplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCAccelAmplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCAccelAmplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCDeccelAmplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCDeccelAmplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCStopGrid in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCStopGrid in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCReuseGrid in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCReuseGrid in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCWaves3D._waves in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves3D._amplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves3D._amplitudeRate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLens3D._position in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLens3D._radius in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLens3D._lensEffect in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLens3D._dirty in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCRipple3D._radius in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCRipple3D._waves in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCRipple3D._amplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCRipple3D._amplitudeRate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCRipple3D._position in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCShaky3D._randrange in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCShaky3D._shakeZ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLiquid._waves in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLiquid._amplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLiquid._amplitudeRate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves._waves in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves._amplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves._amplitudeRate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves._horizontal in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves._vertical in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCTwirl._twirls in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCTwirl._amplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCTwirl._amplitudeRate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCTwirl._position in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCWaves3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCWaves3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCFlipX3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCFlipX3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCFlipY3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCFlipY3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCLens3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCLens3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCRipple3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCRipple3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCShaky3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCShaky3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCLiquid in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCLiquid in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCWaves in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCWaves in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCTwirl in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCTwirl in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCFlipX._flipX in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionInstant-39A76D3A0BCEABFC.o duplicate symbol _OBJC_IVAR_$_CCFlipY._flipY in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionInstant-39A76D3A0BCEABFC.o duplicate symbol _OBJC_IVAR_$_CCPlace._position in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionInstant-39A76D3A0BCEABFC.o duplicate symbol _OBJC_IVAR_$_CCCallFunc._selector in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionInstant-39A76D3A0BCEABFC.o duplicate symbol _OBJC_IVAR_$_CCCallFunc._targetCallback in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionInstant-39A76D3A0BCEABFC.o duplicate symbol _OBJC_IVAR_$_CCCallFuncND._data in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionInstant-39A76D3A0BCEABFC.o duplicate symbol _OBJC_IVAR_$_CCCallFuncND._callbackMethod in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The har

    thank you
    I already did same wt you suggest me.
    Thanks alot for this.:)

Maybe you are looking for

  • F.18-Vendor Balance Confirmation from SAP directly through FAX and email

    Hi, I would like to know the process and configuration required to send the Vendor Balance Confirmation after month end closing. This is required to be sent by email/fax. Thank you Shiva

  • Variables not seen in query properties

    Dear friends, I have a question as below, I have 10 variables in a report and i have to change the order of this variables. for this when i go to query properties I dont see 2 variables of currency conversion. Is there any other place where i can fin

  • WCS Report - Disassociated APs

    Is it possible to run a report containing all Disassociated APs? I tried all the Device reports in the report launch pad and they only report on associated APs. I can obviosly view them in Monitor/Access Points but I cannot report on them. Any help w

  • SCCM collection query to create ESX host machines

    Hello Everyone I am looking SCCM collection query to create  ESX host collection. Any one can share the query to create EST host machines collection please

  • How to call XI exposed webservice from J2ee

    How to call XI exposed webservice from J2EE , and how to pass UserID and Password to it.