summaryrefslogtreecommitdiff
path: root/lib/core/init.lua
blob: 74486ba27114d6ed217e262fd2329e370e556907 (plain)
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
--
-- This file is loaded at the initialisation of ToME
-- Load the system functions
--

-- Name of globals to save
tome_dofile_anywhere(ANGBAND_DIR_CORE, "load.lua")

-- Very thin xml parser(49 lines ;)
tome_dofile_anywhere(ANGBAND_DIR_CORE, "xml.lua")

-- various vital helper code
tome_dofile_anywhere(ANGBAND_DIR_CORE, "util.lua")
tome_dofile_anywhere(ANGBAND_DIR_CORE, "player.lua")
tome_dofile_anywhere(ANGBAND_DIR_CORE, "objects.lua")
tome_dofile_anywhere(ANGBAND_DIR_CORE, "monsters.lua")
tome_dofile_anywhere(ANGBAND_DIR_CORE, "dungeon.lua")

--------------------------------------------------------------
--------------------------------------------------------------
--------------------------------------------------------------
--
-- Do not thouch after this line
--
tome_dofile_anywhere(ANGBAND_DIR_CORE, "load2.lua")