mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 11:33:28 +08:00
On initial region registration, if the user chooses the option to make the region part of an existing estate, then list the existing region names.
This commit is contained in:
@@ -37,8 +37,22 @@ namespace OpenSim.Region.Framework.Interfaces
|
||||
|
||||
EstateSettings LoadEstateSettings(UUID regionID, bool create);
|
||||
EstateSettings LoadEstateSettings(int estateID);
|
||||
|
||||
/// <summary>
|
||||
/// Load/Get all estate settings.
|
||||
/// </summary>
|
||||
/// <returns>An empty list if no estates were found.</returns>
|
||||
List<EstateSettings> LoadEstateSettingsAll();
|
||||
|
||||
void StoreEstateSettings(EstateSettings es);
|
||||
List<int> GetEstates(string search);
|
||||
|
||||
/// <summary>
|
||||
/// Get the IDs of all estates.
|
||||
/// </summary>
|
||||
/// <returns>An empty list if no estates were found.</returns>
|
||||
List<int> GetEstatesAll();
|
||||
|
||||
bool LinkRegion(UUID regionID, int estateID);
|
||||
List<UUID> GetRegions(int estateID);
|
||||
bool DeleteEstate(int estateID);
|
||||
|
||||
Reference in New Issue
Block a user