-
Notifications
You must be signed in to change notification settings - Fork 0
/
texture-map.lisp
28 lines (26 loc) · 908 Bytes
/
texture-map.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;;; -*- Lisp -*-
(in-package "PLATFORMER")
(defstruct (texture-map
(:conc-name "TEXTURE/"))
(player nil :read-only t)
(crabby nil :read-only t)
(outside nil :read-only t)
(small-cloud nil :read-only t)
(big-cloud nil :read-only t)
(level-background nil :read-only t)
(menu-background nil :read-only t)
(menu-atmosphere nil :read-only t)
(menu-buttons nil :read-only t)
(paused nil :read-only t)
(sound nil :read-only t)
(urm nil :read-only t)
(volume nil :read-only t)
(health-power nil :read-only t)
(game-over nil :read-only t)
(level-complete nil :read-only t)
(potions nil :read-only t)
(crates nil :read-only t)
(spikes nil :read-only t)
(cannon nil :read-only t)
(cannonball nil :read-only t)
)