aboutsummaryrefslogtreecommitdiff
path: root/scripts/globals.lua
blob: f5e2c7d0b2c1510396f8d04e44b4a4d0fd7f28a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--the directions
up=0
right=1
down=2
left = 3

--the alliances.
enemy_neutral=0
enemy_evil=1
enemy_weapon=2
enemy_superevil=3

--sync configuration vars
function this.sync(this)
	this:set_physics(this.physics)
	this:set_enemy(this.enemy)
	this:set_controllable(this.controllable)
	this:set_noclip(this.noclip)
end