public Provinces( EU2.Install install ) : base(install, CSVHEADER, typeof( Province )) { loaded = false; boundbox = null; idtable = null; adjacencies = null; }
public ProvinceList( EU2.Install install ) : base(install) { loaded = false; boundbox = null; idtable = null; adjacencies = null; }
public Province FromLocation( int x, int y ) { if ( idtable == null ) idtable = new EU2.Data.Mapfiles.IDTable( Install ); return this[idtable.HitTest( x, y )]; }