UNPKG
swordio
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
A medieval warrior-based programming language
github.com/mrfishie/swordio
cpdt/swordio
swordio
/
lib
/
util.js
6 lines
•
158 B
JavaScript
View Raw
1
2
3
4
5
6
exports.directionVectors
=
{
0:
{
x:
0
,
y:
-1
},
//
up
1:
{
x:
1
,
y:
0
},
//
right
2:
{
x:
0
,
y:
1
},
//
down
3:
{
x:
-1
,
y:
0
}
//
left
}
;