summaryrefslogtreecommitdiff
path: root/Constants.cs
diff options
context:
space:
mode:
authorGeorgeAbbott <57576261+GeorgeAbbott@users.noreply.github.com>2020-09-06 18:09:11 +0100
committerGitHub <noreply@github.com>2020-09-06 18:09:11 +0100
commit44c1454eed3a2710bbf087c721cc4bd7c56fe1b4 (patch)
tree54ff5cf753774be83feae2e15672ed4fa26ad4f1 /Constants.cs
Add files via upload
Diffstat (limited to 'Constants.cs')
-rw-r--r--Constants.cs36
1 files changed, 36 insertions, 0 deletions
diff --git a/Constants.cs b/Constants.cs
new file mode 100644
index 0000000..f46874d
--- /dev/null
+++ b/Constants.cs
@@ -0,0 +1,36 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Microsoft.Xna.Framework;
+using Microsoft.Xna.Framework.Graphics;
+
+namespace Class_War
+{
+ public static class Constants
+ {
+ public const string Consolas12 = "Consolas12";
+
+ public const string DefaultFont = Consolas12;
+
+ public const int Level1MaxEnemyCount = 10;
+ public const int Level1EnemyHealth = 100;
+
+ public const string MainCharacterSpriteImage = "maincharaimage";
+ public static readonly Vector2 MainCharacterStartingPosition;
+
+ public const int LifeLostScreenDuration = 3;
+ public const int AfterLifeLostImmunityTime = LifeLostScreenDuration + 5;
+
+ public const int RightMostEdge = 800;
+ public const int BottomMostEdge = 500;
+
+
+ static Constants ()
+ {
+ MainCharacterStartingPosition = new Vector2(330, 375); // TODO: add
+ }
+
+ }
+}