src/landscape.h
branchgamebalance
changeset 9906 6f41b8713b65
child 6307 f40e88cff863
child 6719 4cc327ad39d5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/landscape.h	Thu Apr 19 14:43:25 2007 +0000
@@ -0,0 +1,19 @@
+/* $Id$ */
+
+/** @file landscape.h */
+
+enum {
+	SNOW_LINE_MONTHS = 12,
+	SNOW_LINE_DAYS   = 32,
+};
+
+struct SnowLine {
+	byte table[SNOW_LINE_MONTHS][SNOW_LINE_DAYS];
+	byte highest_value;
+};
+
+bool IsSnowLineSet(void);
+void SetSnowLine(byte table[SNOW_LINE_MONTHS][SNOW_LINE_DAYS]);
+byte GetSnowLine(void);
+byte HighestSnowLine(void);
+void ClearSnowLine(void);