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