Exemplo n.º 1
0
 internal ChatMsg(WoWChatMsgType type, byte channel, string sender, WoWGUID senderGUID, int timestamp, string text)
 {
     Type       = type;
     Channel    = channel;
     Sender     = sender;
     SenderGUID = senderGUID;
     TimeStamp  = timestamp;
     Text       = text;
 }
Exemplo n.º 2
0
        public BaseObject(WoWGUID guid)
        {
            if (!guid.IsValid)
            {
                throw new Exception("Invalid GUID passed to BaseObject");
            }

            GUID = guid;
        }
Exemplo n.º 3
0
 public Container(WoWGUID guid)
     : base(guid)
 {
 }
Exemplo n.º 4
0
 public Unit(WoWGUID guid)
     : base(guid)
 {
 }
Exemplo n.º 5
0
 public GameObject(WoWGUID guid)
     : base(guid)
 {
 }
Exemplo n.º 6
0
 public Player(WoWGUID guid)
     : base(guid)
 {
     CharacterID = guid.BackendGUID;
 }
Exemplo n.º 7
0
 public DynamicObject(WoWGUID guid)
     : base(guid)
 {
 }
Exemplo n.º 8
0
 public Item(WoWGUID guid)
     : base(guid)
 {
 }
Exemplo n.º 9
0
 public Corpse(WoWGUID guid)
     : base(guid)
 {
 }