StreetNames:

Index values of streets

Signed-off-by: HeshamTB <hishaminv@gmail.com>
This commit is contained in:
HeshamTB 2020-11-09 23:53:42 +03:00
parent d3d515a818
commit 0bc231222a

15
src/StreetNames.java Normal file
View File

@ -0,0 +1,15 @@
/**
* Street names with their corresponding indices in MakkahCity.
*/
public class StreetNames {
public static final int KA_STREET = 0;
public static final int THIRD_HIGHWAY = 1;
public static final int FOURTH_HISHWAY = 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 STREET5 = 7;
}