Example #1
0
 public XaResult SetStatus(DtxXaStatus value)
 {
     _Status        = value;
     packing_flags |= 256;
     Dirty          = true;
     return(this);
 }
Example #2
0
 public override void Read(IDecoder dec)
 {
     packing_flags = (int)dec.ReadUint16();
     if ((packing_flags & 256) != 0)
     {
         _Status = DtxXaStatusGetter.Get(dec.ReadUint16());
     }
 }
Example #3
0
 public XaResult(DtxXaStatus Status)
 {
     SetStatus(Status);
 }