Skip to content

Commit

Permalink
Updated to 0.6.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
KDani-99 committed May 12, 2020
1 parent 002f56f commit 01a3e7a
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions CalloutAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,34 @@ public enum Probability
High
}

/* public enum DepartmentArea
public enum DepartmentArea
{
SANDY_SHORES,
LOS_SANTOS,
LOS_SANTOS_SOUTH,
BLAINE_COUNTY,
HIGHWAY,
PALETO_BAY
}*/
PALETO_BAY,
PARKS,
PORTS,
LS_AIRPORT,
SEA,
FORT_ZANCUDO
}
public static Dictionary<DepartmentArea, string> DepartmentAreaNames = new Dictionary<DepartmentArea, string>
{
{ DepartmentArea.SANDY_SHORES,"Sandy Shores" },
{ DepartmentArea.LOS_SANTOS,"Los Santos" },
{ DepartmentArea.LOS_SANTOS_SOUTH,"South Los Santos" },
{ DepartmentArea.BLAINE_COUNTY,"Blaine County" },
{ DepartmentArea.HIGHWAY,"Highway" },
{ DepartmentArea.PALETO_BAY,"Paleto Bay" },
{ DepartmentArea.PARKS,"Parks" },
{ DepartmentArea.PORTS,"Ports" },
{ DepartmentArea.LS_AIRPORT,"Los Santos International Airport" },
{ DepartmentArea.SEA,"Sea" },
{ DepartmentArea.FORT_ZANCUDO,"Fort Zancudo" }
};

/* Gameplay related methods */

Expand Down Expand Up @@ -344,4 +364,4 @@ public CalloutPropertiesAttribute(string name, string author, string version, Ca
this.author = author;
}
}
}
}

0 comments on commit 01a3e7a

Please sign in to comment.