2020-11-09 21:53:42 +01:00
|
|
|
/**
|
|
|
|
* Street names with their corresponding indices in MakkahCity.
|
|
|
|
*/
|
|
|
|
public class StreetNames {
|
|
|
|
|
|
|
|
public static final int KA_STREET = 0;
|
2020-11-10 18:15:11 +01:00
|
|
|
public static final int KUDAY = 1;
|
|
|
|
public static final int FOURTH_HIGHWAY = 2;
|
2020-11-09 21:53:42 +01:00
|
|
|
public static final int STREET1 = 3;
|
|
|
|
public static final int STREET2 = 4;
|
|
|
|
public static final int STREET3 = 5;
|
|
|
|
public static final int STREET4 = 6;
|
2020-11-10 18:15:11 +01:00
|
|
|
public static final int IBRAHIM_ALKHALIL = 7;
|
2020-11-09 21:53:42 +01:00
|
|
|
|
|
|
|
}
|