mirror of
https://github.com/opensim/opensim.git
synced 2026-07-08 13:56:26 +08:00
18 lines
277 B
C#
18 lines
277 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Region.Capabilities
|
|
{
|
|
[LLSDType("MAP")]
|
|
public class LLSDMapRequest
|
|
{
|
|
public int Flags = 0;
|
|
|
|
public LLSDMapRequest()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|