source: 2012/23/RamiP/YAG2DSSBase/YAG2DSS/YAG2DSS/ALTKEngine/ALTKConstants.cs @ 2848

Revision 2848, 1.4 KB checked in by ramipasa, 11 years ago (diff)
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace ALTK
7{
8    public static class ALTKConstants
9    {
10        public static string ContentPath = Environment.CurrentDirectory + "\\Content\\";
11        public static string TexturePath = ContentPath + "Textures\\";
12        public static string MusicPath = ContentPath + "Music\\";
13        public static string SoundPath = ContentPath + "Sounds\\";
14        public static string FontPath = ContentPath + "Fonts\\";
15
16        public static int WindowWidth;
17        public static int WindowHeight;
18        public static double JypeliToXNARatioX = 0.96; // 1.125 for 1440x900
19        public static double JypeliToXNARatioY = 0.96;
20
21        public const int JYDefaultResY = 800;
22        public const int JYDefaultResX = 1000;
23
24        /// <summary>
25        /// Staattiset animaatiot tehtiin tämä resoluutio mielessä (X)
26        /// </summary>
27        public const double StaticAnimDevelopResX = 1440.0;
28        /// <summary>
29        /// Staattiset animaatiot tehtiin tämä resoluutio mielessä (Y)
30        /// </summary>
31        public const double StaticAnimDevelopResY = 900.0;
32
33        public static double StaticAnimRatioX = 1.0;
34        public static double StaticAnimRatioY = 1.0;
35
36        public static bool bMusicEnabled = true;
37        public static bool bSoundEnabled = true;
38    }
39}
Note: See TracBrowser for help on using the repository browser.