1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System.Collections.Generic;
- using OpenSim.Framework;
- using OpenSim.Services.Interfaces;
- namespace OpenSim.Region.Framework.Interfaces
- {
- public interface IWorldMapModule
- {
-
-
-
- void GenerateMaptile();
- void MapBlockFromGridRegion(MapBlockData block, GridRegion r, uint flag);
- }
- }
|