HeshamTB
92661695b1
Signed-off-by: HeshamTB <hishaminv@gmail.com> Signed-off-by: HeshamTB <hishaminv@gmail.com>
16 lines
447 B
Java
16 lines
447 B
Java
/**
|
|
* Street names with their corresponding indices in MakkahCity.
|
|
*/
|
|
public class StreetNames {
|
|
|
|
public static final int KA_STREET = 0;
|
|
public static final int KUDAY = 1;
|
|
public static final int FOURTH_HIGHWAY = 2;
|
|
public static final int STREET1 = 3;
|
|
public static final int STREET2 = 4;
|
|
public static final int STREET3 = 5;
|
|
public static final int STREET4 = 6;
|
|
public static final int IBRAHIM_ALKHALIL = 7;
|
|
|
|
}
|