-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.brx
34 lines (31 loc) · 954 Bytes
/
game.brx
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
29
30
31
32
33
34
#!/usr/bin/brux
/*======================================*\
| FLY, LITTLE DRAGON! |
| |
| Endless flyer game featuring various |
| user-contributed predator and prey |
| characters. |
| |
| All characters are the intellectual |
| property of their respective creators, |
| unless otherwise specified. |
| |
| Code is free under GPL 3.0. |
\*======================================*/
::debugMode <- false
donut("src/util.nut")
donut("std/actors.nut")
donut("src/assets.nut")
donut("src/bg.nut")
donut("src/prey.nut")
donut("src/bird.nut")
donut("src/pred.nut")
donut("src/globals.nut")
donut("src/gmmain.nut")
donut("src/gmplay.nut")
donut("src/gmcharsel.nut")
donut("src/cursor.nut")
donut("src/menus.nut")
donut("src/debug.nut")
donut("src/main.nut")
main()