Skip to content

Commit

Permalink
Implement the 'Adding Some Sprites' chapter
Browse files Browse the repository at this point in the history
  • Loading branch information
alinradut committed Sep 8, 2011
1 parent e860fb4 commit 1ffe2b5
Show file tree
Hide file tree
Showing 33 changed files with 154 additions and 1 deletion.
31 changes: 30 additions & 1 deletion Classes/HelloWorldScene.cpp
Expand Up @@ -9,7 +9,8 @@

using namespace cocos2d;

#define PTM_RATIO 32
#define PTM_RATIO 32
#define FLOOR_HEIGHT 62.0f
enum
{
kTagTileMap = 1,
Expand Down Expand Up @@ -49,6 +50,34 @@ HelloWorld::HelloWorld()
m_debugDraw->SetFlags(flags);
*/

CCSprite *sprite = CCSprite::spriteWithFile("bg.png");
sprite->setAnchorPoint(CCPointZero);
this->addChild(sprite, -1);

sprite = CCSprite::spriteWithFile("catapult_base_2.png");
sprite->setAnchorPoint(CCPointZero);
sprite->setPosition(CCPointMake(181.0, FLOOR_HEIGHT));
this->addChild(sprite, 0);

sprite = CCSprite::spriteWithFile("squirrel_1.png");
sprite->setAnchorPoint(CCPointZero);
sprite->setPosition(CCPointMake(11.0, FLOOR_HEIGHT));
this->addChild(sprite, 0);

sprite = CCSprite::spriteWithFile("catapult_base_1.png");
sprite->setAnchorPoint(CCPointZero);
sprite->setPosition(CCPointMake(181.0, FLOOR_HEIGHT));
this->addChild(sprite, 9);

sprite = CCSprite::spriteWithFile("squirrel_2.png");
sprite->setAnchorPoint(CCPointZero);
sprite->setPosition(CCPointMake(240.0, FLOOR_HEIGHT));
this->addChild(sprite, 9);

sprite = CCSprite::spriteWithFile("fg.png");
sprite->setAnchorPoint(CCPointZero);
this->addChild(sprite, 10);

// Define the ground body.
b2BodyDef groundBodyDef;
groundBodyDef.position.Set(0, 0); // bottom-left corner
Expand Down
124 changes: 124 additions & 0 deletions CuteAPultCocos2D-x.xcodeproj/project.pbxproj
Expand Up @@ -7,6 +7,37 @@
objects = {

/* Begin PBXBuildFile section */
3BF219C2141960D900FD494A /* acorn-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219A3141960D900FD494A /* acorn-hd.png */; };
3BF219C3141960D900FD494A /* acorn.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219A4141960D900FD494A /* acorn.png */; };
3BF219C4141960D900FD494A /* bg-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219A5141960D900FD494A /* bg-hd.png */; };
3BF219C5141960D900FD494A /* bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219A6141960D900FD494A /* bg.png */; };
3BF219C6141960D900FD494A /* brick_1-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219A7141960D900FD494A /* brick_1-hd.png */; };
3BF219C7141960D900FD494A /* brick_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219A8141960D900FD494A /* brick_1.png */; };
3BF219C8141960D900FD494A /* brick_2-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219A9141960D900FD494A /* brick_2-hd.png */; };
3BF219C9141960D900FD494A /* brick_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219AA141960D900FD494A /* brick_2.png */; };
3BF219CA141960D900FD494A /* brick_3-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219AB141960D900FD494A /* brick_3-hd.png */; };
3BF219CB141960D900FD494A /* brick_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219AC141960D900FD494A /* brick_3.png */; };
3BF219CC141960D900FD494A /* brick_platform-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219AD141960D900FD494A /* brick_platform-hd.png */; };
3BF219CD141960D900FD494A /* brick_platform.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219AE141960D900FD494A /* brick_platform.png */; };
3BF219CE141960D900FD494A /* catapult_arm-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219AF141960D900FD494A /* catapult_arm-hd.png */; };
3BF219CF141960D900FD494A /* catapult_arm.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219B0141960D900FD494A /* catapult_arm.png */; };
3BF219D0141960D900FD494A /* catapult_base_1-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219B1141960D900FD494A /* catapult_base_1-hd.png */; };
3BF219D1141960D900FD494A /* catapult_base_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219B2141960D900FD494A /* catapult_base_1.png */; };
3BF219D2141960D900FD494A /* catapult_base_2-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219B3141960D900FD494A /* catapult_base_2-hd.png */; };
3BF219D3141960D900FD494A /* catapult_base_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219B4141960D900FD494A /* catapult_base_2.png */; };
3BF219D4141960D900FD494A /* catapult_cup-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219B5141960D900FD494A /* catapult_cup-hd.png */; };
3BF219D5141960D900FD494A /* catapult_cup.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219B6141960D900FD494A /* catapult_cup.png */; };
3BF219D6141960D900FD494A /* fg-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219B7141960D900FD494A /* fg-hd.png */; };
3BF219D7141960D900FD494A /* fg.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219B8141960D900FD494A /* fg.png */; };
3BF219D8141960D900FD494A /* fire.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219B9141960D900FD494A /* fire.png */; };
3BF219D9141960D900FD494A /* head_cat-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219BA141960D900FD494A /* head_cat-hd.png */; };
3BF219DA141960D900FD494A /* head_cat.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219BB141960D900FD494A /* head_cat.png */; };
3BF219DB141960D900FD494A /* head_dog-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219BC141960D900FD494A /* head_dog-hd.png */; };
3BF219DC141960D900FD494A /* head_dog.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219BD141960D900FD494A /* head_dog.png */; };
3BF219DD141960D900FD494A /* squirrel_1-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219BE141960D900FD494A /* squirrel_1-hd.png */; };
3BF219DE141960D900FD494A /* squirrel_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219BF141960D900FD494A /* squirrel_1.png */; };
3BF219DF141960D900FD494A /* squirrel_2-hd.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219C0141960D900FD494A /* squirrel_2-hd.png */; };
3BF219E0141960D900FD494A /* squirrel_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 3BF219C1141960D900FD494A /* squirrel_2.png */; };
505574581045D68500A31725 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 506EDBA4102F4C9F00A389B3 /* AVFoundation.framework */; };
505574591045D68500A31725 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC6640020F83B3EA000B3E49 /* AudioToolbox.framework */; };
5055745A1045D68500A31725 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCCBF1B60F6022AE0040855A /* CoreGraphics.framework */; };
Expand Down Expand Up @@ -371,6 +402,37 @@

/* Begin PBXFileReference section */
1D6058910D05DD3D006BFB54 /* CuteAPultCocos2D-x.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "CuteAPultCocos2D-x.app"; sourceTree = BUILT_PRODUCTS_DIR; };
3BF219A3141960D900FD494A /* acorn-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "acorn-hd.png"; sourceTree = "<group>"; };
3BF219A4141960D900FD494A /* acorn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = acorn.png; sourceTree = "<group>"; };
3BF219A5141960D900FD494A /* bg-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "bg-hd.png"; sourceTree = "<group>"; };
3BF219A6141960D900FD494A /* bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bg.png; sourceTree = "<group>"; };
3BF219A7141960D900FD494A /* brick_1-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "brick_1-hd.png"; sourceTree = "<group>"; };
3BF219A8141960D900FD494A /* brick_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = brick_1.png; sourceTree = "<group>"; };
3BF219A9141960D900FD494A /* brick_2-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "brick_2-hd.png"; sourceTree = "<group>"; };
3BF219AA141960D900FD494A /* brick_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = brick_2.png; sourceTree = "<group>"; };
3BF219AB141960D900FD494A /* brick_3-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "brick_3-hd.png"; sourceTree = "<group>"; };
3BF219AC141960D900FD494A /* brick_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = brick_3.png; sourceTree = "<group>"; };
3BF219AD141960D900FD494A /* brick_platform-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "brick_platform-hd.png"; sourceTree = "<group>"; };
3BF219AE141960D900FD494A /* brick_platform.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = brick_platform.png; sourceTree = "<group>"; };
3BF219AF141960D900FD494A /* catapult_arm-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "catapult_arm-hd.png"; sourceTree = "<group>"; };
3BF219B0141960D900FD494A /* catapult_arm.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = catapult_arm.png; sourceTree = "<group>"; };
3BF219B1141960D900FD494A /* catapult_base_1-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "catapult_base_1-hd.png"; sourceTree = "<group>"; };
3BF219B2141960D900FD494A /* catapult_base_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = catapult_base_1.png; sourceTree = "<group>"; };
3BF219B3141960D900FD494A /* catapult_base_2-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "catapult_base_2-hd.png"; sourceTree = "<group>"; };
3BF219B4141960D900FD494A /* catapult_base_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = catapult_base_2.png; sourceTree = "<group>"; };
3BF219B5141960D900FD494A /* catapult_cup-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "catapult_cup-hd.png"; sourceTree = "<group>"; };
3BF219B6141960D900FD494A /* catapult_cup.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = catapult_cup.png; sourceTree = "<group>"; };
3BF219B7141960D900FD494A /* fg-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "fg-hd.png"; sourceTree = "<group>"; };
3BF219B8141960D900FD494A /* fg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = fg.png; sourceTree = "<group>"; };
3BF219B9141960D900FD494A /* fire.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = fire.png; sourceTree = "<group>"; };
3BF219BA141960D900FD494A /* head_cat-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "head_cat-hd.png"; sourceTree = "<group>"; };
3BF219BB141960D900FD494A /* head_cat.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = head_cat.png; sourceTree = "<group>"; };
3BF219BC141960D900FD494A /* head_dog-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "head_dog-hd.png"; sourceTree = "<group>"; };
3BF219BD141960D900FD494A /* head_dog.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = head_dog.png; sourceTree = "<group>"; };
3BF219BE141960D900FD494A /* squirrel_1-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "squirrel_1-hd.png"; sourceTree = "<group>"; };
3BF219BF141960D900FD494A /* squirrel_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = squirrel_1.png; sourceTree = "<group>"; };
3BF219C0141960D900FD494A /* squirrel_2-hd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "squirrel_2-hd.png"; sourceTree = "<group>"; };
3BF219C1141960D900FD494A /* squirrel_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = squirrel_2.png; sourceTree = "<group>"; };
506EDB87102F4C4000A389B3 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
506EDBA4102F4C9F00A389B3 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
506EE05E10304ED200A389B3 /* libcocos2d libraries.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libcocos2d libraries.a"; sourceTree = BUILT_PRODUCTS_DIR; };
Expand Down Expand Up @@ -842,6 +904,37 @@
E02BB542126CA5DA006E46A2 /* Icon-72.png */,
50F4144410692EE7002A0D5E /* Default.png */,
50F4144610692EE7002A0D5E /* Icon.png */,
3BF219A3141960D900FD494A /* acorn-hd.png */,
3BF219A4141960D900FD494A /* acorn.png */,
3BF219A5141960D900FD494A /* bg-hd.png */,
3BF219A6141960D900FD494A /* bg.png */,
3BF219A7141960D900FD494A /* brick_1-hd.png */,
3BF219A8141960D900FD494A /* brick_1.png */,
3BF219A9141960D900FD494A /* brick_2-hd.png */,
3BF219AA141960D900FD494A /* brick_2.png */,
3BF219AB141960D900FD494A /* brick_3-hd.png */,
3BF219AC141960D900FD494A /* brick_3.png */,
3BF219AD141960D900FD494A /* brick_platform-hd.png */,
3BF219AE141960D900FD494A /* brick_platform.png */,
3BF219AF141960D900FD494A /* catapult_arm-hd.png */,
3BF219B0141960D900FD494A /* catapult_arm.png */,
3BF219B1141960D900FD494A /* catapult_base_1-hd.png */,
3BF219B2141960D900FD494A /* catapult_base_1.png */,
3BF219B3141960D900FD494A /* catapult_base_2-hd.png */,
3BF219B4141960D900FD494A /* catapult_base_2.png */,
3BF219B5141960D900FD494A /* catapult_cup-hd.png */,
3BF219B6141960D900FD494A /* catapult_cup.png */,
3BF219B7141960D900FD494A /* fg-hd.png */,
3BF219B8141960D900FD494A /* fg.png */,
3BF219B9141960D900FD494A /* fire.png */,
3BF219BA141960D900FD494A /* head_cat-hd.png */,
3BF219BB141960D900FD494A /* head_cat.png */,
3BF219BC141960D900FD494A /* head_dog-hd.png */,
3BF219BD141960D900FD494A /* head_dog.png */,
3BF219BE141960D900FD494A /* squirrel_1-hd.png */,
3BF219BF141960D900FD494A /* squirrel_1.png */,
3BF219C0141960D900FD494A /* squirrel_2-hd.png */,
3BF219C1141960D900FD494A /* squirrel_2.png */,
);
path = Resources;
sourceTree = "<group>";
Expand Down Expand Up @@ -1706,6 +1799,37 @@
E02BB548126CA5DA006E46A2 /* Icon-72.png in Resources */,
BF152AD012E16ADD00703484 /* LICENSE.box2d in Resources */,
BF152AD112E16ADD00703484 /* LICENSE.cocos2d-x in Resources */,
3BF219C2141960D900FD494A /* acorn-hd.png in Resources */,
3BF219C3141960D900FD494A /* acorn.png in Resources */,
3BF219C4141960D900FD494A /* bg-hd.png in Resources */,
3BF219C5141960D900FD494A /* bg.png in Resources */,
3BF219C6141960D900FD494A /* brick_1-hd.png in Resources */,
3BF219C7141960D900FD494A /* brick_1.png in Resources */,
3BF219C8141960D900FD494A /* brick_2-hd.png in Resources */,
3BF219C9141960D900FD494A /* brick_2.png in Resources */,
3BF219CA141960D900FD494A /* brick_3-hd.png in Resources */,
3BF219CB141960D900FD494A /* brick_3.png in Resources */,
3BF219CC141960D900FD494A /* brick_platform-hd.png in Resources */,
3BF219CD141960D900FD494A /* brick_platform.png in Resources */,
3BF219CE141960D900FD494A /* catapult_arm-hd.png in Resources */,
3BF219CF141960D900FD494A /* catapult_arm.png in Resources */,
3BF219D0141960D900FD494A /* catapult_base_1-hd.png in Resources */,
3BF219D1141960D900FD494A /* catapult_base_1.png in Resources */,
3BF219D2141960D900FD494A /* catapult_base_2-hd.png in Resources */,
3BF219D3141960D900FD494A /* catapult_base_2.png in Resources */,
3BF219D4141960D900FD494A /* catapult_cup-hd.png in Resources */,
3BF219D5141960D900FD494A /* catapult_cup.png in Resources */,
3BF219D6141960D900FD494A /* fg-hd.png in Resources */,
3BF219D7141960D900FD494A /* fg.png in Resources */,
3BF219D8141960D900FD494A /* fire.png in Resources */,
3BF219D9141960D900FD494A /* head_cat-hd.png in Resources */,
3BF219DA141960D900FD494A /* head_cat.png in Resources */,
3BF219DB141960D900FD494A /* head_dog-hd.png in Resources */,
3BF219DC141960D900FD494A /* head_dog.png in Resources */,
3BF219DD141960D900FD494A /* squirrel_1-hd.png in Resources */,
3BF219DE141960D900FD494A /* squirrel_1.png in Resources */,
3BF219DF141960D900FD494A /* squirrel_2-hd.png in Resources */,
3BF219E0141960D900FD494A /* squirrel_2.png in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down
Binary file added Resources/acorn-hd.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/acorn.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/bg-hd.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/bg.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/brick_1-hd.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/brick_1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/brick_2-hd.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/brick_2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/brick_3-hd.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/brick_3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/brick_platform-hd.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/brick_platform.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/catapult_arm-hd.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/catapult_arm.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/catapult_base_1-hd.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/catapult_base_1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/catapult_base_2-hd.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/catapult_base_2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/catapult_cup-hd.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/catapult_cup.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/fg-hd.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/fg.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/fire.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/head_cat-hd.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/head_cat.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/head_dog-hd.png
Binary file added Resources/head_dog.png
Binary file added Resources/squirrel_1-hd.png
Binary file added Resources/squirrel_1.png
Binary file added Resources/squirrel_2-hd.png
Binary file added Resources/squirrel_2.png

0 comments on commit 1ffe2b5

Please sign in to comment.