diff options
Diffstat (limited to 'Constants.cs')
-rw-r--r-- | Constants.cs | 36 |
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
+ }
+
+ }
+}
|