protected bool ReadBool()
 {
     if (_sending)
     {
         Debug.Log(GetType() + " unable to read data in packet! It is sent!");
         return(false);
     }
     return(peer != null?peer.ReadBool() : false);
 }