~eda-qa/dhlib/main

« back to all changes in this revision

Viewing changes to restricted/app-fortress/fortress/GConst.hx

  • Committer: edA-qa mort-ora-y
  • Date: 2010-02-16 05:36:32 UTC
  • Revision ID: eda-qa@disemia.com-20100216053632-60lt7fndfi3fgblw
first

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package fortress;
 
2
 
 
3
/** 
 
4
 * Constants which unlike gameDriver.global. do not change based on
 
5
 * game settings.
 
6
 */
 
7
class GConst
 
8
{
 
9
        static public var gridSizeX = 10;
 
10
        static public var gridSizeY = 10;
 
11
        static public var paletteEdgeSize = 5;
 
12
                
 
13
        static public var towerSelectSizeX = 5;
 
14
        static public var towerSelectSizeY = 5;
 
15
        
 
16
#if localtest
 
17
        static public var urlBase = "http://localhost/palisaro";
 
18
#elseif release
 
19
        static public var urlBase = "http://disemia.com/palisaro";      
 
20
#end
 
21
        static public var urlGame = urlBase + "/Palisaro.swf";
 
22
        static public var urlHighScores = urlBase + "/highscores.php";
 
23
        static public var urlAddScore = urlBase + "/addscore.php";
 
24
        static public var urlRadio = urlBase + "/radio.php";
 
25
        static public var urlRadioRate = urlBase + "/radio_rate.php";
 
26
        static public var urlVersion = urlBase + "/version.txt";
 
27
                
 
28
        static public var scoreHeight = 1.3;
 
29
}