diff colors.c @ 1:ff5e05767bd3 ALPHA

Empty changelog
author darius
date Sat, 06 Dec 1997 05:41:28 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/colors.c	Sat Dec 06 05:41:28 1997 +0000
@@ -0,0 +1,35 @@
+/* $Id: colors.c,v 1.1.1.1 1997/12/06 05:41:28 darius Exp $ */
+
+/* colors.c
+ *
+ * Kevin P. Smith  6/11/89
+ */
+#include "copyright2.h"
+#include <stdio.h>
+#include <string.h>
+#include "Wlib.h"
+#include "defs.h"
+#include "struct.h"
+#include "data.h"
+#include "proto.h"
+
+void
+getColorDefs()
+{
+    borderColor = W_Grey;
+    backColor = W_Black;
+    foreColor = W_White;
+    textColor = W_White;
+    shipCol[0] = W_Grey;
+    shipCol[1] = W_Yellow;
+    shipCol[2] = W_Red;
+    shipCol[3] = W_Green;
+    shipCol[4] = W_Cyan;
+    shipCol[5] = W_Grey;
+    warningColor = W_Red;
+    unColor = W_Grey;
+    rColor = W_Red;
+    yColor = W_Yellow;
+    gColor = W_Green;
+    myColor = W_White;
+}