Avoid spaces and caps in file names.

(Also fixes a bug, AFAICT, since "SpeechBubble" wasn't uniformly.)
This commit is contained in:
Eli Barzilay 2011-10-28 15:15:17 -04:00
parent e9d32dfdff
commit d77a89ac42
112 changed files with 65 additions and 75 deletions

View File

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide brown-block) (provide brown-block)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path brown-block-img "Brown Block.png") (define-runtime-path brown-block-img "brown-block.png")
(define brown-block (read-bitmap brown-block-img)) (define brown-block (read-bitmap brown-block-img))

View File

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide character-boy) (provide character-boy)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path character-boy-img "Character Boy.png") (define-runtime-path character-boy-img "character-boy.png")
(define character-boy (read-bitmap character-boy-img)) (define character-boy (read-bitmap character-boy-img))

View File

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide character-cat-girl) (provide character-cat-girl)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path character-cat-girl-img "Character Cat Girl.png") (define-runtime-path character-cat-girl-img "character-cat-girl.png")
(define character-cat-girl (read-bitmap character-cat-girl-img)) (define character-cat-girl (read-bitmap character-cat-girl-img))

View File

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 8.5 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide character-horn-girl) (provide character-horn-girl)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path character-horn-girl-img "Character Horn Girl.png") (define-runtime-path character-horn-girl-img "character-horn-girl.png")
(define character-horn-girl (read-bitmap character-horn-girl-img)) (define character-horn-girl (read-bitmap character-horn-girl-img))

View File

Before

Width:  |  Height:  |  Size: 8.7 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide character-pink-girl) (provide character-pink-girl)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path character-pink-girl-img "Character Pink Girl.png") (define-runtime-path character-pink-girl-img "character-pink-girl.png")
(define character-pink-girl (read-bitmap character-pink-girl-img)) (define character-pink-girl (read-bitmap character-pink-girl-img))

View File

Before

Width:  |  Height:  |  Size: 9.5 KiB

After

Width:  |  Height:  |  Size: 9.5 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide character-princess-girl) (provide character-princess-girl)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path character-princess-girl-img "Character Princess Girl.png") (define-runtime-path character-princess-girl-img "character-princess-girl.png")
(define character-princess-girl (read-bitmap character-princess-girl-img)) (define character-princess-girl (read-bitmap character-princess-girl-img))

View File

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide chest-closed) (provide chest-closed)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path chest-closed-img "Chest Closed.png") (define-runtime-path chest-closed-img "chest-closed.png")
(define chest-closed (read-bitmap chest-closed-img)) (define chest-closed (read-bitmap chest-closed-img))

View File

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide chest-lid) (provide chest-lid)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path chest-lid-img "Chest Lid.png") (define-runtime-path chest-lid-img "chest-lid.png")
(define chest-lid (read-bitmap chest-lid-img)) (define chest-lid (read-bitmap chest-lid-img))

View File

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide chest-open) (provide chest-open)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path chest-open-img "Chest Open.png") (define-runtime-path chest-open-img "chest-open.png")
(define chest-open (read-bitmap chest-open-img)) (define chest-open (read-bitmap chest-open-img))

View File

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide dirt-block) (provide dirt-block)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path dirt-block-img "Dirt Block.png") (define-runtime-path dirt-block-img "dirt-block.png")
(define dirt-block (read-bitmap dirt-block-img)) (define dirt-block (read-bitmap dirt-block-img))

View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide door-tall-closed) (provide door-tall-closed)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path door-tall-closed-img "Door Tall Closed.png") (define-runtime-path door-tall-closed-img "door-tall-closed.png")
(define door-tall-closed (read-bitmap door-tall-closed-img)) (define door-tall-closed (read-bitmap door-tall-closed-img))

View File

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide door-tall-open) (provide door-tall-open)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path door-tall-open-img "Door Tall Open.png") (define-runtime-path door-tall-open-img "door-tall-open.png")
(define door-tall-open (read-bitmap door-tall-open-img)) (define door-tall-open (read-bitmap door-tall-open-img))

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide enemy-bug) (provide enemy-bug)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path enemy-bug-img "Enemy Bug.png") (define-runtime-path enemy-bug-img "enemy-bug.png")
(define enemy-bug (read-bitmap enemy-bug-img)) (define enemy-bug (read-bitmap enemy-bug-img))

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide gem-blue) (provide gem-blue)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path gem-blue-img "Gem Blue.png") (define-runtime-path gem-blue-img "gem-blue.png")
(define gem-blue (read-bitmap gem-blue-img)) (define gem-blue (read-bitmap gem-blue-img))

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide gem-green) (provide gem-green)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path gem-green-img "Gem Green.png") (define-runtime-path gem-green-img "gem-green.png")
(define gem-green (read-bitmap gem-green-img)) (define gem-green (read-bitmap gem-green-img))

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide gem-orange) (provide gem-orange)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path gem-orange-img "Gem Orange.png") (define-runtime-path gem-orange-img "gem-orange.png")
(define gem-orange (read-bitmap gem-orange-img)) (define gem-orange (read-bitmap gem-orange-img))

View File

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide grass-block) (provide grass-block)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path grass-block-img "Grass Block.png") (define-runtime-path grass-block-img "grass-block.png")
(define grass-block (read-bitmap grass-block-img)) (define grass-block (read-bitmap grass-block-img))

View File

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide heart) (provide heart)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path heart-img "Heart.png") (define-runtime-path heart-img "heart.png")
(define heart (read-bitmap heart-img)) (define heart (read-bitmap heart-img))

View File

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide key) (provide key)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path key-img "Key.png") (define-runtime-path key-img "key.png")
(define key (read-bitmap key-img)) (define key (read-bitmap key-img))

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide plain-block) (provide plain-block)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path plain-block-img "Plain Block.png") (define-runtime-path plain-block-img "plain-block.png")
(define plain-block (read-bitmap plain-block-img)) (define plain-block (read-bitmap plain-block-img))

View File

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide ramp-east) (provide ramp-east)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path ramp-east-img "Ramp East.png") (define-runtime-path ramp-east-img "ramp-east.png")
(define ramp-east (read-bitmap ramp-east-img)) (define ramp-east (read-bitmap ramp-east-img))

View File

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide ramp-north) (provide ramp-north)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path ramp-north-img "Ramp North.png") (define-runtime-path ramp-north-img "ramp-north.png")
(define ramp-north (read-bitmap ramp-north-img)) (define ramp-north (read-bitmap ramp-north-img))

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide ramp-south) (provide ramp-south)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path ramp-south-img "Ramp South.png") (define-runtime-path ramp-south-img "ramp-south.png")
(define ramp-south (read-bitmap ramp-south-img)) (define ramp-south (read-bitmap ramp-south-img))

View File

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide ramp-west) (provide ramp-west)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path ramp-west-img "Ramp West.png") (define-runtime-path ramp-west-img "ramp-west.png")
(define ramp-west (read-bitmap ramp-west-img)) (define ramp-west (read-bitmap ramp-west-img))

View File

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide rock) (provide rock)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path rock-img "Rock.png") (define-runtime-path rock-img "rock.png")
(define rock (read-bitmap rock-img)) (define rock (read-bitmap rock-img))

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide roof-east) (provide roof-east)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path roof-east-img "Roof East.png") (define-runtime-path roof-east-img "roof-east.png")
(define roof-east (read-bitmap roof-east-img)) (define roof-east (read-bitmap roof-east-img))

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide roof-north-east) (provide roof-north-east)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path roof-north-east-img "Roof North East.png") (define-runtime-path roof-north-east-img "roof-north-east.png")
(define roof-north-east (read-bitmap roof-north-east-img)) (define roof-north-east (read-bitmap roof-north-east-img))

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide roof-north-west) (provide roof-north-west)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path roof-north-west-img "Roof North West.png") (define-runtime-path roof-north-west-img "roof-north-west.png")
(define roof-north-west (read-bitmap roof-north-west-img)) (define roof-north-west (read-bitmap roof-north-west-img))

View File

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide roof-north) (provide roof-north)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path roof-north-img "Roof North.png") (define-runtime-path roof-north-img "roof-north.png")
(define roof-north (read-bitmap roof-north-img)) (define roof-north (read-bitmap roof-north-img))

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide roof-south-east) (provide roof-south-east)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path roof-south-east-img "Roof South East.png") (define-runtime-path roof-south-east-img "roof-south-east.png")
(define roof-south-east (read-bitmap roof-south-east-img)) (define roof-south-east (read-bitmap roof-south-east-img))

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide roof-south-west) (provide roof-south-west)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path roof-south-west-img "Roof South West.png") (define-runtime-path roof-south-west-img "roof-south-west.png")
(define roof-south-west (read-bitmap roof-south-west-img)) (define roof-south-west (read-bitmap roof-south-west-img))

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide roof-south) (provide roof-south)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path roof-south-img "Roof South.png") (define-runtime-path roof-south-img "roof-south.png")
(define roof-south (read-bitmap roof-south-img)) (define roof-south (read-bitmap roof-south-img))

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide roof-west) (provide roof-west)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path roof-west-img "Roof West.png") (define-runtime-path roof-west-img "roof-west.png")
(define roof-west (read-bitmap roof-west-img)) (define roof-west (read-bitmap roof-west-img))

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide selector) (provide selector)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path selector-img "Selector.png") (define-runtime-path selector-img "selector.png")
(define selector (read-bitmap selector-img)) (define selector (read-bitmap selector-img))

View File

Before

Width:  |  Height:  |  Size: 697 B

After

Width:  |  Height:  |  Size: 697 B

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide shadow-east) (provide shadow-east)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path shadow-east-img "Shadow East.png") (define-runtime-path shadow-east-img "shadow-east.png")
(define shadow-east (read-bitmap shadow-east-img)) (define shadow-east (read-bitmap shadow-east-img))

View File

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide shadow-north-east) (provide shadow-north-east)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path shadow-north-east-img "Shadow North East.png") (define-runtime-path shadow-north-east-img "shadow-north-east.png")
(define shadow-north-east (read-bitmap shadow-north-east-img)) (define shadow-north-east (read-bitmap shadow-north-east-img))

View File

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide shadow-north-west) (provide shadow-north-west)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path shadow-north-west-img "Shadow North West.png") (define-runtime-path shadow-north-west-img "shadow-north-west.png")
(define shadow-north-west (read-bitmap shadow-north-west-img)) (define shadow-north-west (read-bitmap shadow-north-west-img))

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide shadow-north) (provide shadow-north)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path shadow-north-img "Shadow North.png") (define-runtime-path shadow-north-img "shadow-north.png")
(define shadow-north (read-bitmap shadow-north-img)) (define shadow-north (read-bitmap shadow-north-img))

View File

Before

Width:  |  Height:  |  Size: 823 B

After

Width:  |  Height:  |  Size: 823 B

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide shadow-side-west) (provide shadow-side-west)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path shadow-side-west-img "Shadow Side West.png") (define-runtime-path shadow-side-west-img "shadow-side-west.png")
(define shadow-side-west (read-bitmap shadow-side-west-img)) (define shadow-side-west (read-bitmap shadow-side-west-img))

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide shadow-south-east) (provide shadow-south-east)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path shadow-south-east-img "Shadow South East.png") (define-runtime-path shadow-south-east-img "shadow-south-east.png")
(define shadow-south-east (read-bitmap shadow-south-east-img)) (define shadow-south-east (read-bitmap shadow-south-east-img))

View File

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide shadow-south-west) (provide shadow-south-west)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path shadow-south-west-img "Shadow South West.png") (define-runtime-path shadow-south-west-img "shadow-south-west.png")
(define shadow-south-west (read-bitmap shadow-south-west-img)) (define shadow-south-west (read-bitmap shadow-south-west-img))

View File

Before

Width:  |  Height:  |  Size: 634 B

After

Width:  |  Height:  |  Size: 634 B

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide shadow-south) (provide shadow-south)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path shadow-south-img "Shadow South.png") (define-runtime-path shadow-south-img "shadow-south.png")
(define shadow-south (read-bitmap shadow-south-img)) (define shadow-south (read-bitmap shadow-south-img))

View File

Before

Width:  |  Height:  |  Size: 968 B

After

Width:  |  Height:  |  Size: 968 B

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide shadow-west) (provide shadow-west)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path shadow-west-img "Shadow West.png") (define-runtime-path shadow-west-img "shadow-west.png")
(define shadow-west (read-bitmap shadow-west-img)) (define shadow-west (read-bitmap shadow-west-img))

View File

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,5 @@
#lang racket/base
(provide speech-bubble)
(require racket/draw racket/runtime-path)
(define-runtime-path speech-bubble-img "speech-bubble.png")
(define speech-bubble (read-bitmap speech-bubble-img))

View File

@ -1,5 +0,0 @@
#lang racket/base
(provide speechbubble)
(require racket/draw racket/runtime-path)
(define-runtime-path speechbubble-img "Speechbubble.png")
(define speechbubble (read-bitmap speechbubble-img))

View File

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide stone-block-tall) (provide stone-block-tall)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path stone-block-tall-img "Stone Block Tall.png") (define-runtime-path stone-block-tall-img "stone-block-tall.png")
(define stone-block-tall (read-bitmap stone-block-tall-img)) (define stone-block-tall (read-bitmap stone-block-tall-img))

View File

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide stone-block) (provide stone-block)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path stone-block-img "Stone Block.png") (define-runtime-path stone-block-img "stone-block.png")
(define stone-block (read-bitmap stone-block-img)) (define stone-block (read-bitmap stone-block-img))

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide tree-short) (provide tree-short)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path tree-short-img "Tree Short.png") (define-runtime-path tree-short-img "tree-short.png")
(define tree-short (read-bitmap tree-short-img)) (define tree-short (read-bitmap tree-short-img))

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide tree-tall) (provide tree-tall)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path tree-tall-img "Tree Tall.png") (define-runtime-path tree-tall-img "tree-tall.png")
(define tree-tall (read-bitmap tree-tall-img)) (define tree-tall (read-bitmap tree-tall-img))

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -1,5 +1,5 @@
#lang racket/base #lang racket/base
(provide tree-ugly) (provide tree-ugly)
(require racket/draw racket/runtime-path) (require racket/draw racket/runtime-path)
(define-runtime-path tree-ugly-img "Tree Ugly.png") (define-runtime-path tree-ugly-img "tree-ugly.png")
(define tree-ugly (read-bitmap tree-ugly-img)) (define tree-ugly (read-bitmap tree-ugly-img))

View File

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

Some files were not shown because too many files have changed in this diff Show More