Esempio n. 1
0
        public static bool Prefix(byte park, ref DistrictPark data)
        {
            var districtPark = DistrictPark.FromPark(park);

            if (districtPark.Name != string.Empty)
            {
                Constraints.ReleaseDistrictPark(districtPark);
            }

            return(true);
        }