mirror of
https://github.com/opensim/opensim.git
synced 2026-06-01 07:15:44 +08:00
13 lines
260 B
C#
13 lines
260 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
|
{
|
|
public interface IWorld
|
|
{
|
|
IObject[] Objects { get; }
|
|
IHeightmap Terrain { get; }
|
|
}
|
|
}
|