summaryrefslogtreecommitdiff
path: root/src/defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/defines.h')
-rw-r--r--src/defines.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/defines.h b/src/defines.h
index 954380ba..f1b27a27 100644
--- a/src/defines.h
+++ b/src/defines.h
@@ -76,7 +76,14 @@ enum {
/**
* Points to give to a brand new character
*/
- POINTS_TO_DISTRIBUTES_AT_LVL1 = 60
+ POINTS_TO_DISTRIBUTES_AT_LVL1 = 60,
+
+ // Screen Related
+/**
+ * Determine the area in which a character
+ * can hear another one speak
+ */
+ AROUND_AREA_IN_TILES = 10
};
/**
@@ -219,6 +226,13 @@ enum {
CHAR_LIST_NOLOGIN
};
+// Chat errors return values
+enum {
+ // CHAT_OK = 0,
+ CHAT_NOLOGIN = 1,
+ CHAT_NO_CHARACTER_SELECTED
+};
+
// Object type enumeration
enum {
OBJECT_ITEM = 0,