Exported the start-functions. Removed the jumping-bug.
[uxul-world.git] / uxul-world.asd
1 ;;; -*- lisp -*-
2
3 ;;; Copyright 2009 Christoph Senjak
4
5 (defsystem "uxul-world"
6   :description "Uxul World - A simple Jump'N'Run"
7   :version "No Release Yet"
8   :author "Christoph Senjak <firstName.secondName at googlemail.com>"
9   :license "Copyright 2009 Christoph Senjak."
10   :depends-on (#:lispbuilder-sdl #:closer-mop
11                                  #:cl-fad
12                                  #:lispbuilder-sdl-image)
13   :components ((:file "uxul-world")
14                (:file "macros")
15                (:file "constants")
16                (:file "xy-coordinates")
17                (:file "collision")
18                (:file "files")
19                (:file "animation")
20                (:file "functions")
21                (:file "game-object")
22                (:file "game-object-with-animation")
23                (:file "elementary-classes")
24                (:file "small-classes")
25                (:file "player")
26                (:file "simple-enemy")
27                (:file "flying-nasobem")
28                (:file "burning-marshmallow")
29                (:file "on-collision")
30                (:file "room")
31                (:file "objectarray")
32                (:file "add-object")
33                (:file "draw")
34                (:file "game")
35                (:file "testing-room")
36                )
37   :serial t)