summaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-05-27 17:22:21 +0200
committerBardur Arantsson <bardur@scientician.net>2012-05-29 05:37:50 +0200
commit3c6ca071045f3ab2153db833c2be2b500a43880c (patch)
tree8de8cc7d41087b61b047cc502f149e7968352a5d /src/types.h
parent1d1ff4c25315b609680c9443c96f823643b3df5d (diff)
Lua: Add "range_type" to support moving spells.
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/types.h b/src/types.h
index 9927e7a5..5b349174 100644
--- a/src/types.h
+++ b/src/types.h
@@ -2431,6 +2431,17 @@ struct cli_comm
};
/*
+ * Range
+ */
+typedef struct range_type range_type;
+struct range_type
+{
+ s32b min;
+ s32b max;
+};
+
+
+/*
* Skills !
*/
typedef struct skill_type skill_type;