blob: f46874d1bfff1e4446330892aaadec280f5ad6b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
}
}
}
|