mirror of
https://github.com/opensim/opensim.git
synced 2026-05-31 14:55:53 +08:00
19 lines
281 B
C#
19 lines
281 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using libsecondlife.Packets;
|
|
|
|
namespace OpenSim
|
|
{
|
|
public class QueItem
|
|
{
|
|
public QueItem()
|
|
{
|
|
}
|
|
|
|
public Packet Packet;
|
|
public bool Incoming;
|
|
}
|
|
|
|
}
|