6 lines
199 B
Racket
6 lines
199 B
Racket
#lang racket/base
|
|
(provide character-boy)
|
|
(require racket/draw racket/runtime-path)
|
|
(define-runtime-path character-boy-img "character-boy.png")
|
|
(define character-boy (read-bitmap character-boy-img))
|