QueItem.cs 281 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using libsecondlife.Packets;
  5. namespace OpenSim
  6. {
  7. public class QueItem
  8. {
  9. public QueItem()
  10. {
  11. }
  12. public Packet Packet;
  13. public bool Incoming;
  14. }
  15. }