From 44c1454eed3a2710bbf087c721cc4bd7c56fe1b4 Mon Sep 17 00:00:00 2001 From: GeorgeAbbott <57576261+GeorgeAbbott@users.noreply.github.com> Date: Sun, 6 Sep 2020 18:09:11 +0100 Subject: Add files via upload --- Constants.cs | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Constants.cs (limited to 'Constants.cs') 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 + } + + } +} -- cgit v1.2.1