Archived
1
0

+ introduced "ismale"-attribute for humans

* humans can only mate with someone from the other sex
x bugfixing for Windows (FontRendering setting)
* some optimizations
This commit is contained in:
2009-01-30 13:00:32 +01:00
parent fa5ad89d6b
commit 422210793e
5 changed files with 21 additions and 16 deletions
+2 -2
View File
@@ -3,7 +3,7 @@ using System.Drawing;
namespace vampi {
public abstract class Settings {
public const int size = 500;
public const int size = 120;
public const int coveragePercent = 77;
public const int vampireRatio = 3;
public const int drawEveryNthStep = 1;
@@ -19,7 +19,7 @@ namespace vampi {
*/ public static Color[] guiColorHuman = {Color.FromArgb(0, 60, 0), Color.LimeGreen};
public static Color[] guiColorHumanInfected = {Color.FromArgb(60, 0, 60), Color.DarkMagenta};
public static Color[] guiColorVampire = {Color.FromArgb(60, 0, 0), Color.Red};
public static Color guiColorEmpty = Color.Silver;
public static Color guiColorEmpty = Color.Wheat;
public static Font guiFont = new Font("sans-serif", 8);
public static Brush guiFontBrush = Brushes.Black;