Add the ability to query the MYSQL databse for a list of the stored prim UUIDs

This commit is contained in:
Melanie
2012-06-07 22:39:03 +02:00
parent 4942314435
commit 26c5b32988
8 changed files with 63 additions and 0 deletions

View File

@@ -133,5 +133,10 @@ namespace OpenSim.Data.Null
public void Shutdown()
{
}
public UUID[] GetObjectIDs(UUID regionID)
{
return new UUID[0];
}
}
}